Update README.md

The example step for conditional workflow steps was incorrect
This commit is contained in:
Alexander Orvik
2024-06-21 11:04:56 +02:00
committed by GitHub
parent 0c45773b62
commit 1648d3e94a

View File

@@ -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