We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2832178 commit 8bd46d3Copy full SHA for 8bd46d3
1 file changed
.github/workflows/eas-update-provisioning-profile.yml
@@ -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