Skip to content

Commit

Permalink
Update releaes.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lithiumtoast committed Aug 6, 2023
1 parent 5cb2b77 commit f06dd64
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 @@ -32,7 +32,7 @@ jobs:
needs: [cache-job]
env:
CACHE_HIT: ${{needs.cache-job.outputs.cache-hit}}
if: ${{ env.CACHE_HIT != 'true' }}
if: $CACHE_HIT != 'true'
uses: "./.github/workflows/build.yml"

release-job:
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
env:
CACHE_HIT: ${{needs.cache-job.outputs.cache-hit}}
if: ${{ env.CACHE_HIT != 'true' }}
if: $CACHE_HIT != 'true'
steps:

- name: "Clone Git repository"
Expand Down

0 comments on commit f06dd64

Please sign in to comment.