chore: updated eas json and eas version #10
Workflow file for this run
This file contains hidden or 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: Build & Submit Production | |
| # on: | |
| # pull_request: | |
| # branches: [main] | |
| # paths-ignore: ["docs/**"] | |
| # types: [opened, synchronize] | |
| # # Only run if PR is from `dev` branch | |
| # if: github.head_ref == 'dev' | |
| # jobs: | |
| # build: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - uses: actions/setup-node@v3 | |
| # with: | |
| # node-version: 18 | |
| # - run: npm install -g eas-cli | |
| # - run: eas login --token ${{ secrets.EAS_TOKEN }} | |
| # - run: eas build --platform android --profile production --non-interactive --no-wait | |
| # - run: eas build --platform ios --profile production --non-interactive --no-wait | |
| # - run: eas submit --platform android --profile production --non-interactive | |
| # - run: eas submit --platform ios --profile production --non-interactive |