Skip to content

Commit

Permalink
avoid using always() in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz-h committed Aug 28, 2024
1 parent 4fd0415 commit 2bde0c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
CXX: ${{ matrix.job.cxx }}
VCPKG_BINARY_SOURCES: "clear;http,https://vcpkg-cache.megamol.org/{triplet}-{name}-{sha},readwrite,Authorization: Token ${{ secrets.CACHING_SERVER_SECRET }}"
build_windows:
if: ${{ always() }}
if: ${{ !cancelled() }}
needs: vcpkg_cache
strategy:
fail-fast: false
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Build
run: cmake --build $GITHUB_WORKSPACE/build --config ${{ matrix.job.configuration }} --parallel 2
build_linux:
if: ${{ always() }}
if: ${{ !cancelled() }}
needs: vcpkg_cache
strategy:
fail-fast: false
Expand Down

0 comments on commit 2bde0c6

Please sign in to comment.