mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-16 23:51:16 +01:00
Update README.md
The example step for conditional workflow steps was incorrect
This commit is contained in:
parent
0c45773b62
commit
1648d3e94a
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ jobs:
|
|||
key: ${{ runner.os }}-primes
|
||||
|
||||
- name: Generate Prime Numbers
|
||||
if: steps.cache-primes.outputs.cache-hit != 'true'
|
||||
if: ${{ steps.cache-primes.outputs.cache-hit != 'true' }}
|
||||
run: /generate-primes.sh -d prime-numbers
|
||||
|
||||
- name: Use Prime Numbers
|
||||
|
|
Loading…
Reference in a new issue