Bluesky app fork with some witchin' additions 💫

create new cache key on each run when saving previous commit hash (#3898)

* create new cache key on each run

* dynamic restore-key

authored by hailey.at and committed by

GitHub 0658dd05 c6d30f67

+4 -2
+4 -2
.github/workflows/bundle-deploy-eas-update.yml
··· 24 24 runs-on: ubuntu-latest 25 25 concurrency: 26 26 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy 27 - cancel-in-progress: false 27 + cancel-in-progress: true 28 28 outputs: 29 29 fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }} 30 30 ··· 54 54 uses: actions/cache@v4 55 55 with: 56 56 path: last-successful-commit-hash.txt 57 - key: last-successful-deployment-commit-${{ github.ref_name }} 57 + key: last-successful-deployment-commit-${{ github.ref_name }}-${{ github.sha }} 58 + restore-keys: | 59 + last-successful-deployment-commit-${{ github.ref_name }}- 58 60 59 61 - name: Add the last successful deployment commit to the output 60 62 id: last-successful-commit