Merge pull request #187 from yssk22/develop #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Expo - OTA Update Auto | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "expo/**" | |
- ".github/workflows/eas-ota-update-auto.yml" | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
environment: | |
name: eas-submission | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "22.3.0" | |
cache: "yarn" | |
cache-dependency-path: "expo/package.json" | |
- uses: expo/expo-github-action@v8 | |
with: | |
eas-version: 13.4.2 | |
token: ${{ secrets.EXPO_TOKEN }} | |
- run: cd expo && yarn install | |
- run: cd expo && ./scripts/eas.sh update --channel beta --non-interactive --auto | |
env: | |
HPAPP_CONFIG_NAME: beta | |
SECRETS_JSON: ${{ secrets.SECRETS_JSON }} | |
GOOGLE_SERVICES_INFO_PLIST: ${{ secrets.GOOGLE_SERVICES_INFO_PLIST }} | |
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} |