use custom github action for fingerprinting

This commit is contained in:
Hailey
2024-05-26 18:34:58 -07:00
parent dc9d80d2a8
commit 9deee71ef6
3 changed files with 61 additions and 59 deletions
+12
View File
@@ -76,3 +76,15 @@ jobs:
- name: 🚀 Deploy
run: eas submit -p ios --non-interactive --path build.ipa
- name: ⬇️ Restore Cache
id: get-base-commit
uses: actions/cache@v4
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
with:
path: most-recent-testflight-commit.txt
key: most-recent-testflight-commit
- name: ✏️ Write commit hash to cache
if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
run: echo ${{ github.sha }} > most-recent-testflight-commit.txt