-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): sync provisioning profile (#4188)
* chore(ci): sync provisioning profile * chore(ci): sync provisioning profile
- Loading branch information
Pierre Gee
authored
Jul 31, 2024
1 parent
2832178
commit 8bd46d3
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Update iOS Provisioning Profile | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-profile: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Install EAS CLI | ||
run: npm install -g eas-cli | ||
|
||
- name: Authenticate with Expo | ||
run: eas login --token ${{ secrets.EXPO_TOKEN }} | ||
|
||
- name: Sync iOS credentials with EAS | ||
run: eas credentials:sync --platform ios | ||
env: | ||
EXPO_APPLE_API_KEY_ID: ${{ secrets.EXPO_APPLE_API_KEY_ID }} | ||
EXPO_APPLE_API_ISSUER_ID: ${{ secrets.EXPO_APPLE_API_ISSUER_ID }} | ||
EXPO_APPLE_API_KEY: ${{ secrets.EXPO_APPLE_API_KEY }} |