chore(release): update version to 3.1.7 and adjust related configurat… #33
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: Test Update | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/assets/data/updateInfo.json" | |
| jobs: | |
| eas-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Install EAS CLI | |
| run: pnpm install -g eas-cli | |
| - name: Run EAS Update | |
| env: | |
| EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} | |
| run: | | |
| eas update --branch test --message "${{ github.event.head_commit.message }}" |