Build Release #9
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: GitHub Actions | |
| run-name: Build Release | |
| on: | |
| - push | |
| jobs: | |
| build_release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup JAVA 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 11 | |
| - name: Cache Gradle and wrapper | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
| - name: Decode Key | |
| env: | |
| ENCODED_STRING: ${{ secrets.KEYSTORE_KEY_BASE64 }} | |
| SIGNING_KEY_STORE_PATH: ${{ secrets.KEYSTORE_KEY_PATH }} | |
| TEST_STRING: ${{ secrets.TEST_SECRET }} | |
| run: | | |
| echo $TEST_STRING | |
| echo $ENCODED_STRING > keystore-b64.txt | |
| base64 -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH | |
| - name: Decode Properties | |
| env: | |
| ENCODED_STRING: ${{ secrets.KEYSTORE_PROPERTIES_BASE64 }} | |
| SIGNING_PROPERTIES_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }} | |
| run: | | |
| echo $ENCODED_STRING > properties-b64.txt | |
| base64 -d properties-b64.txt > $SIGNING_PROPERTIES_STORE_PATH | |
| - name: Build Release apk | |
| run: ./gradlew assembleRelease | |
| - name: Upload Release Build to Artifacts | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: release-artifacts | |
| paths: | | |
| app/build/outputs/apk/release/ | |
| - name: Create Github Release | |
| uses: softprops/action-gh-release@v2 | |
| if: github.ref_type == 'tag' | |
| with: | |
| generate_release_notes: true | |
| prerelease: true | |
| files: | | |
| app/build/outputs/apk/release/app-release.apk |