autopif: use canary channel fp #228
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: Android CI | |
| on: | |
| push: | |
| branches: inject_s | |
| paths-ignore: | |
| - '**.md' | |
| - '.github/workflows/autopif.yml' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: 'recursive' | |
| fetch-depth: 1 | |
| ref: inject_s | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| - name: Build WebUI | |
| run: | | |
| cd webui | |
| npm ci | |
| npm run build | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew assembleRelease | |
| - name: Setup variables | |
| run: | | |
| VERSION=$(jq -r '.version' update.json) | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| - name: Upload CI module zip as artifact zip | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: PlayIntegrityFix_${{ env.VERSION }}-inject-s_${{ github.run_number }} | |
| path: 'module/*' | |
| compression-level: 9 |