Improve CI task order

This commit is contained in:
Daniel Wolf 2024-12-27 20:48:19 +01:00
parent 4ae52a743e
commit 1275d57b97
1 changed files with 5 additions and 5 deletions

View File

@ -57,11 +57,6 @@ jobs:
cd build
cmake ${{ matrix.cmakeOptions }} ..
cmake --build . --config Release --target package
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: build/*.zip
- name: Run tests
shell: bash
run: |
@ -70,6 +65,11 @@ jobs:
else
./build/rhubarb/runTests
fi
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: build/*.zip
release:
needs: build
runs-on: ubuntu-latest