We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The action could output the eas.json contents so it can be reused by other steps
I would like to use expo publish to the production release channel
expo publish
This is my current workaround:
- name: 🏗 Setup Expo and EAS uses: expo/expo-github-action@v7 - name: 📦 Install dependencies run: yarn install - name: 🏗 Release channel uses: sergeysova/jq-action@v2 id: releaseChannel with: cmd: 'jq .build.production.releaseChannel eas.json -r' - name: 🚀 Publish app run: expo publish --non-interactive --release-channel=${{ steps.releaseChannel.outputs.value }}
Suggested workflow:
- name: 🏗 Setup Expo and EAS uses: expo/expo-github-action@v7 id: expo - name: 📦 Install dependencies run: yarn install - name: 🚀 Publish app run: expo publish --non-interactive --release-channel=${{ steps.expo.eas.build.production.releaseChannel }}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the feature
The action could output the eas.json contents so it can be reused by other steps
Motivation
I would like to use
expo publish
to the production release channelAdditional context
This is my current workaround:
Suggested workflow:
The text was updated successfully, but these errors were encountered: