From 1275d57b9735f18efacdd8d8c38d771a268ef067 Mon Sep 17 00:00:00 2001 From: Daniel Wolf Date: Fri, 27 Dec 2024 20:48:19 +0100 Subject: [PATCH] Improve CI task order --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c901850..66373da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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