Skip to content

Commit

Permalink
Run EAS build locally
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoran committed Oct 29, 2024
1 parent ff4d037 commit 1016a19
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-and-upload-app:
name: Build and upload iOS app
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
Expand All @@ -24,7 +24,10 @@ jobs:
expo-cache: true
token: ${{secrets.EXPO_TOKEN}}
- run: npm install
- run: eas build -p ios --non-interactive
- run: eas submit -p ios --latest --profile production --non-interactive
env:
EXPO_APPLE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}}
- run: eas build --profile development --platform ios --non-interactive --local
- name: Upload binary as artifact
uses: actions/upload-artifact@v4
with:
name: binary
path: ${{ github.workspace }}/*.ipa
retention-days: 30

0 comments on commit 1016a19

Please sign in to comment.