ios widget showing what is available at chucks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add apk release build

+36
+36
.github/workflows/build-apk.yml
··· 1 + name: Build APK 2 + 3 + on: 4 + release: 5 + types: [published] 6 + 7 + jobs: 8 + build: 9 + runs-on: ubuntu-latest 10 + 11 + steps: 12 + - name: Checkout code 13 + uses: actions/checkout@v4 14 + 15 + - name: Set up JDK 17 16 + uses: actions/setup-java@v4 17 + with: 18 + distribution: 'temurin' 19 + java-version: '17' 20 + 21 + - name: Setup Gradle 22 + uses: gradle/actions/setup-gradle@v3 23 + 24 + - name: Grant execute permission for gradlew 25 + run: chmod +x android/gradlew 26 + 27 + - name: Build Release APK 28 + working-directory: ./android 29 + run: ./gradlew assembleRelease 30 + 31 + - name: Upload APK to Release 32 + uses: softprops/action-gh-release@v1 33 + with: 34 + files: android/app/build/outputs/apk/release/app-release.apk 35 + env: 36 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}