You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,10 @@ jobs:
19
19
run: |
20
20
if (( $(date +%s) < $(( $(date -d "$(gh cache list -R AngelAuraMC/angle --json createdAt -q '.[0].createdAt')" +%s) + 604800 )) )); then
21
21
echo "Cache is new enough"
22
-
echo "reverify-cache=true" >> "$GITHUB_OUTPUT"
22
+
echo "reverify-cache=false" >> "$GITHUB_OUTPUT"
23
23
else
24
24
echo "Cache needs updating"
25
-
echo "reverify-cache=false" >> "$GITHUB_OUTPUT"
25
+
echo "reverify-cache=true" >> "$GITHUB_OUTPUT"
26
26
fi
27
27
28
28
update-build-environment-cache:
@@ -31,7 +31,7 @@ jobs:
31
31
actions: write
32
32
runs-on: ubuntu-24.04
33
33
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
0 commit comments