Skip to content

Commit d6e2f8e

Browse files
committed
chore: update outdated GitHub Actions workflows
1 parent 7892cfc commit d6e2f8e

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626
required: false
2727

2828
jobs:
29-
mobile:
29+
example:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: 🏗 Setup repository
@@ -37,23 +37,23 @@ jobs:
3737
with:
3838
expo-token: ${{ secrets.EXPO_TOKEN }}
3939

40-
- name: 👷 Build packages for mobile
41-
run: pnpm run -w build:mobile
40+
- name: 👷 Build packages for example
41+
run: pnpm run -w build:example
4242

4343
# You can remove this step if you already configured this
4444
# This project shouldn't be pre-configured with this ID, that's why its omitted
4545
- name: 👷 Configure project
46-
working-directory: apps/mobile
46+
working-directory: apps/example
4747
run: |
4848
eas init --id d202a56f-0162-450d-af3b-a2d2e0678594 --force --non-interactive
4949
echo $(jq '.expo.runtimeVersion.policy = "sdkVersion"' app.json) > app.json
5050
51-
- name: 🚀 Build mobile
51+
- name: 🚀 Build example
5252
if: ${{ !github.event.inputs.submit || github.event.inputs.profile != 'production' }}
53-
working-directory: apps/mobile
53+
working-directory: apps/example
5454
run: eas build --non-interactive --wait --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }}
5555

56-
- name: 🚀 Build & submit mobile
56+
- name: 🚀 Build & submit example
5757
if: ${{ github.event.inputs.submit && github.event.inputs.profile != 'production' }}
58-
working-directory: apps/mobile
58+
working-directory: apps/example
5959
run: eas build --non-interactive --wait --auto-submit --platform=${{ github.event.inputs.platform }} --profile=${{ github.event.inputs.profile }}

.github/workflows/preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
EXPO_USE_FAST_RESOLVER: true # Use the faster Metro resolver in SDK 51
1313

1414
jobs:
15-
mobile:
15+
example:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 🏗 Setup repository
@@ -24,18 +24,18 @@ jobs:
2424
expo-token: ${{ secrets.EXPO_TOKEN }}
2525

2626
- name: 👷 Build packages
27-
run: pnpm run -w build:mobile
27+
run: pnpm run -w build:example
2828

2929
# You can remove this step if you already configured this
3030
# This project shouldn't be pre-configured with this ID, that's why its omitted
3131
- name: 👷 Configure project
32-
working-directory: apps/mobile
32+
working-directory: apps/example
3333
run: |
3434
eas init --id d202a56f-0162-450d-af3b-a2d2e0678594 --force --non-interactive
3535
echo $(jq '.expo.runtimeVersion.policy = "sdkVersion"' app.json) > app.json
3636
3737
- name: 🚀 Create preview
3838
uses: expo/expo-github-action/preview@v8
3939
with:
40-
working-directory: apps/mobile
40+
working-directory: apps/example
4141
command: eas update --auto --branch=pr-${{ github.event.number }}

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ env:
1717
jobs:
1818
packages:
1919
runs-on: ubuntu-latest
20-
strategy:
21-
fail-fast: false
2220
steps:
2321
- name: 🏗 Setup repository
2422
uses: actions/checkout@v4

0 commit comments

Comments
 (0)