Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: explicitly add non interactive flag #151

Merged
merged 2 commits into from
Jan 16, 2022
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
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