Final state for now of workflow yaml

This commit is contained in:
Timothy Sutton 2022-11-09 15:28:43 -05:00
parent 0c44cf53e1
commit 17fd785d81

View file

@ -13,19 +13,13 @@ on:
# Allows you to run this workflow manually from the Actions tab # Allows you to run this workflow manually from the Actions tab
workflow_dispatch: workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
# This workflow contains a single job called "build"
build: build:
# The type of runner that the job will run on
runs-on: windows-2019 runs-on: windows-2019
# Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout
- uses: actions/checkout@v3 uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Build - name: Build
run: bash .\ci\windows\ci-windows.sh run: bash .\ci\windows\ci-windows.sh
@ -35,5 +29,6 @@ jobs:
name: brigadier-windows-exe name: brigadier-windows-exe
path: D:\a\brigadier\brigadier\dist path: D:\a\brigadier\brigadier\dist
- name: Test # Running the command as a test isn't really useful to us yet
run: bash .\ci\windows\test.sh # - name: Test
# run: bash .\ci\windows\test.sh