Skip to content

Commit 8bd46d3

Browse files
author
Pierre Gee
authored
chore(ci): sync provisioning profile (#4188)
* chore(ci): sync provisioning profile * chore(ci): sync provisioning profile
1 parent 2832178 commit 8bd46d3

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Update iOS Provisioning Profile
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
update-profile:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
13+
- name: Setup Node.js
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: 20
17+
18+
- name: Install EAS CLI
19+
run: npm install -g eas-cli
20+
21+
- name: Authenticate with Expo
22+
run: eas login --token ${{ secrets.EXPO_TOKEN }}
23+
24+
- name: Sync iOS credentials with EAS
25+
run: eas credentials:sync --platform ios
26+
env:
27+
EXPO_APPLE_API_KEY_ID: ${{ secrets.EXPO_APPLE_API_KEY_ID }}
28+
EXPO_APPLE_API_ISSUER_ID: ${{ secrets.EXPO_APPLE_API_ISSUER_ID }}
29+
EXPO_APPLE_API_KEY: ${{ secrets.EXPO_APPLE_API_KEY }}

0 commit comments

Comments
 (0)