We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c3519b commit 0ad18b4Copy full SHA for 0ad18b4
2 files changed
.github/workflows/sign.yml
@@ -13,6 +13,15 @@ jobs:
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v4
16
+
17
+ - name: Cache
18
+ uses: actions/cache@v3
19
+ with:
20
+ path: ~/.fastlane
21
+ key: session-${{ github.run_id }}
22
+ restore-keys: |
23
+ session
24
25
- name: Sign
26
run: |
27
PYTHONUNBUFFERED=1 ./sign.py
.semaphore/semaphore.yml
@@ -15,6 +15,9 @@ blocks:
commands:
- checkout
- nvm install 18
+ - cache restore session
- PYTHONUNBUFFERED=1 ./sign.py
+ - cache delete session
+ - cache store session ~/.fastlane
secrets:
- name: ios-signer
0 commit comments