Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,33 @@ jobs:
build:
name: EAS Build (${{ inputs.platform || 'all' }})
runs-on: ubuntu-latest
# Skip (neutral, not failed) when no Expo token is configured — EAS needs an
# account credential this repo can't provide by default.
if: ${{ secrets.EXPO_TOKEN != '' }}
# EAS needs an account credential this repo can't provide by default. The
# secret can't be read in a job-level `if`, so mirror it into an env var and
# guard each step — the job is a clean no-op (green) when it's unset.
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
steps:
- uses: actions/checkout@v4
if: ${{ env.EXPO_TOKEN != '' }}
- uses: pnpm/action-setup@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
version: 10
- uses: actions/setup-node@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
node-version: 20
cache: pnpm
- uses: expo/expo-github-action@v8
if: ${{ env.EXPO_TOKEN != '' }}
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: pnpm install
if: ${{ env.EXPO_TOKEN != '' }}
- name: Build iOS
if: inputs.platform == 'ios' || inputs.platform == 'all' || inputs.platform == ''
if: ${{ env.EXPO_TOKEN != '' && (inputs.platform == 'ios' || inputs.platform == 'all' || inputs.platform == '') }}
run: eas build --platform ios --profile ${{ inputs.profile || 'preview' }} --non-interactive
- name: Build Android
if: inputs.platform == 'android' || inputs.platform == 'all' || inputs.platform == ''
if: ${{ env.EXPO_TOKEN != '' && (inputs.platform == 'android' || inputs.platform == 'all' || inputs.platform == '') }}
run: eas build --platform android --profile ${{ inputs.profile || 'preview' }} --non-interactive
12 changes: 10 additions & 2 deletions .github/workflows/eas-submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,29 @@ jobs:
submit:
name: Submit to ${{ inputs.platform == 'ios' && 'App Store' || 'Google Play' }}
runs-on: ubuntu-latest
# Skip (neutral, not failed) when no Expo token is configured.
if: ${{ secrets.EXPO_TOKEN != '' }}
# Secret can't be read in a job-level `if`; mirror it to env and guard each
# step so the job is a clean no-op (green) when no Expo token is configured.
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
steps:
- uses: actions/checkout@v4
if: ${{ env.EXPO_TOKEN != '' }}
- uses: pnpm/action-setup@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
version: 10
- uses: actions/setup-node@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
node-version: 20
cache: pnpm
- uses: expo/expo-github-action@v8
if: ${{ env.EXPO_TOKEN != '' }}
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: pnpm install
if: ${{ env.EXPO_TOKEN != '' }}
- name: Submit
if: ${{ env.EXPO_TOKEN != '' }}
run: eas submit --platform ${{ inputs.platform }} --profile production --non-interactive
12 changes: 10 additions & 2 deletions .github/workflows/eas-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,29 @@ jobs:
update:
name: Publish OTA Update
runs-on: ubuntu-latest
# Skip (neutral, not failed) when no Expo token is configured.
if: ${{ secrets.EXPO_TOKEN != '' }}
# Secret can't be read in a job-level `if`; mirror it to env and guard each
# step so the job is a clean no-op (green) when no Expo token is configured.
env:
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
steps:
- uses: actions/checkout@v4
if: ${{ env.EXPO_TOKEN != '' }}
- uses: pnpm/action-setup@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
version: 10
- uses: actions/setup-node@v4
if: ${{ env.EXPO_TOKEN != '' }}
with:
node-version: 20
cache: pnpm
- uses: expo/expo-github-action@v8
if: ${{ env.EXPO_TOKEN != '' }}
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: pnpm install
if: ${{ env.EXPO_TOKEN != '' }}
- name: Publish update
if: ${{ env.EXPO_TOKEN != '' }}
run: eas update --auto --non-interactive --message "${{ inputs.message || 'OTA update' }}"
Loading