Skip to content

Commit

Permalink
docs: explicitly add non interactive flag (#151)
Browse files Browse the repository at this point in the history
* docs: explicitly add non interactive flag

* docs: explicitly add non interactive flag on preview comment
  • Loading branch information
byCedric authored Jan 16, 2022
1 parent 99593b8 commit 844ea09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: yarn install

- name: 🚀 Publish app
run: expo publish
run: expo publish --non-interactive
```
### Creating a new EAS build
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
run: yarn install
- name: 🚀 Build app
run: eas build
run: eas build --non-interactive
```

### Publish a preview from PR
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
run: yarn install
- name: 🚀 Publish preview
run: expo publish --release-channel=pr-${{ github.event.number }}
run: expo publish --release-channel=pr-${{ github.event.number }} --non-interactive
- name: 💬 Comment preview
uses: expo/expo-github-action/preview-comment@v7
Expand Down
4 changes: 2 additions & 2 deletions preview-comment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
run: yarn install

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

- name: 💬 Comment in preview
uses: expo/expo-github-action/preview-comment@v7
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
run: yarn install
- name: 🚀 Publish preview
run: expo publish --release-channel=production
run: expo publish --release-channel=production --non-interactive
- name: 👷 Create preview comment
uses: expo/expo-github-action/preview-comment@v7
Expand Down

0 comments on commit 844ea09

Please sign in to comment.