Skip to content

Commit 844ea09

Browse files
authored
docs: explicitly add non interactive flag (#151)
* docs: explicitly add non interactive flag * docs: explicitly add non interactive flag on preview comment
1 parent 99593b8 commit 844ea09

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
run: yarn install
8989

9090
- name: 🚀 Publish app
91-
run: expo publish
91+
run: expo publish --non-interactive
9292
```
9393
9494
### Creating a new EAS build
@@ -128,7 +128,7 @@ jobs:
128128
run: yarn install
129129
130130
- name: 🚀 Build app
131-
run: eas build
131+
run: eas build --non-interactive
132132
```
133133

134134
### Publish a preview from PR
@@ -166,7 +166,7 @@ jobs:
166166
run: yarn install
167167
168168
- name: 🚀 Publish preview
169-
run: expo publish --release-channel=pr-${{ github.event.number }}
169+
run: expo publish --release-channel=pr-${{ github.event.number }} --non-interactive
170170
171171
- name: 💬 Comment preview
172172
uses: expo/expo-github-action/preview-comment@v7

preview-comment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: yarn install
104104

105105
- name: 🚀 Publish to Expo
106-
run: expo publish --release-channel=pr-${{ github.event.number }}
106+
run: expo publish --release-channel=pr-${{ github.event.number }} --non-interactive
107107

108108
- name: 💬 Comment in preview
109109
uses: expo/expo-github-action/preview-comment@v7
@@ -148,7 +148,7 @@ jobs:
148148
run: yarn install
149149
150150
- name: 🚀 Publish preview
151-
run: expo publish --release-channel=production
151+
run: expo publish --release-channel=production --non-interactive
152152
153153
- name: 👷 Create preview comment
154154
uses: expo/expo-github-action/preview-comment@v7

0 commit comments

Comments
 (0)