There was an error while loading. Please reload this page.
1 parent 82c4776 commit 460340dCopy full SHA for 460340d
1 file changed
.github/workflows/code-update-e2e.yml
@@ -148,9 +148,11 @@ jobs:
148
# (a full build) instead of a confusing swap failure in the Forge leg.
149
- name: Build old Forge app if not cached
150
working-directory: apps/code
151
+ env:
152
+ CACHE_HIT: ${{ steps.forge-cache.outputs.cache-hit }}
153
run: |
154
APP="out/old-forge/PostHog Code.app"
- if [ "${{ steps.forge-cache.outputs.cache-hit }}" = "true" ] && codesign --verify --strict "$APP" 2>/dev/null; then
155
+ if [ "$CACHE_HIT" = "true" ] && codesign --verify --strict "$APP" 2>/dev/null; then
156
echo "Reusing cached Forge app with a valid signature"
157
codesign --verify --strict --verbose=2 "$APP"
158
else
0 commit comments