Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lithiumtoast committed Aug 6, 2023
1 parent a5b601e commit 521ad7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
build-job:
name: "Build"
needs: [cache-job]
if: env.CACHE_HIT == 'true'
if: $CACHE_HIT != 'true'
uses: "./.github/workflows/build.yml"

release-job:
name: "Release .NET solution"
needs: [build-job]
runs-on: ubuntu-latest
if: env.CACHE_HIT != 'true'
if: $CACHE_HIT != 'true'
steps:

- name: "Clone Git repository"
Expand Down

0 comments on commit 521ad7e

Please sign in to comment.