Skip to content

Commit 309bbb7

Browse files
committed
a
1 parent 2626caf commit 309bbb7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
run: |
2020
if (( $(date +%s) < $(( $(date -d "$(gh cache list -R AngelAuraMC/angle --json createdAt -q '.[0].createdAt')" +%s) + 604800 )) )); then
2121
echo "Cache is new enough"
22-
echo "reverify-cache=true" >> "$GITHUB_OUTPUT"
22+
echo "reverify-cache=false" >> "$GITHUB_OUTPUT"
2323
else
2424
echo "Cache needs updating"
25-
echo "reverify-cache=false" >> "$GITHUB_OUTPUT"
25+
echo "reverify-cache=true" >> "$GITHUB_OUTPUT"
2626
fi
2727
2828
update-build-environment-cache:
@@ -31,7 +31,7 @@ jobs:
3131
actions: write
3232
runs-on: ubuntu-24.04
3333
steps:
34-
# if: needs.check-cache-date.outputs.reverify-cache == 'true' is spammed throughout this job because the job itself can't be skipped if we are to use needs for the build job
34+
# if: needs.check-cache-date.outputs.reverify-cache == 'false' is spammed throughout this job because the job itself can't be skipped if we are to use needs for the build job
3535
- name: Restore environment from cache
3636
if: needs.check-cache-date.outputs.reverify-cache == 'true'
3737
id: cached-environment-restore

0 commit comments

Comments
 (0)