Omit cache-hit exit 1, assuming it'll fail regardless

This commit is contained in:
Alex van Andel 2023-02-28 11:39:54 +00:00
parent a3f3f1f263
commit e018eb9ebe

View File

@ -9,14 +9,8 @@ runs:
with:
path: gh.env
key: env-cache-${{ hashFiles('gh.env') }}
restore-keys: env-cache-
- name: Set Environment Variables
if: steps.env-cache.outputs.cache-hit == 'true'
uses: tw3lveparsecs/github-actions-setvars@latest
with:
envFilePath: gh.env
- name: Set Environment Variables
if: steps.env-cache.outputs.cache-hit != 'true'
shell: bash
run: |
echo "You need to run env-create-file first"
exit 1
envFilePath: gh.env