Skip to content

Commit 231188b

Browse files
authored
chore: fix issue with wrong path in expo publish action (#1625)
1 parent e0b224d commit 231188b

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

.github/workflows/publish.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,25 @@ jobs:
88
name: Install and publish
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
11+
- name: Checkout
12+
uses: actions/checkout@v1
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v1
1316
with:
1417
node-version: 12.x
15-
- uses: expo/expo-github-action@v5
18+
19+
- name: Setup Expo
20+
uses: expo/expo-github-action@v5
1621
with:
1722
expo-version: 3.x
1823
expo-username: ${{ secrets.EXPO_CLI_USERNAME }}
1924
expo-password: ${{ secrets.EXPO_CLI_PASSWORD }}
2025
expo-cache: true
21-
- run: yarn bootstrap
22-
- run: cd example
23-
- run: expo publish
26+
27+
- name: Install dependencies
28+
run: yarn bootstrap
29+
30+
- name: Publish Expo app
31+
working-directory: ./example
32+
run: expo publish

0 commit comments

Comments
 (0)