diff --git a/README.md b/README.md index 7afe9d18..e0f46ccb 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ jobs: run: yarn install - name: 🚀 Publish app - run: expo publish + run: expo publish --non-interactive ``` ### Creating a new EAS build @@ -128,7 +128,7 @@ jobs: run: yarn install - name: 🚀 Build app - run: eas build + run: eas build --non-interactive ``` ### Publish a preview from PR @@ -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 diff --git a/preview-comment/README.md b/preview-comment/README.md index 63463ef3..d7f41b0f 100644 --- a/preview-comment/README.md +++ b/preview-comment/README.md @@ -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 @@ -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