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