Skip to content

Commit

Permalink
chore(ci): sync provisioning profile (#4188)
Browse files Browse the repository at this point in the history
* 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.
29 changes: 29 additions & 0 deletions .github/workflows/eas-update-provisioning-profile.yml
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 }}

0 comments on commit 8bd46d3

Please sign in to comment.