its not over until i win #41
This file contains 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
on: | |
push: | |
branches: [master] | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup JAVA 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Debug Base64 String | |
run: | | |
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}" | |
- name: Decode Keystore | |
run: | | |
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}" | base64 --decode > /home/runner/keystore.jks | |
chmod 600 /home/runner/keystore.jks | |
ls -l /home/runner/keystore.jks | |
- name: Build Release apk | |
env: | |
SIGNING_KEY_STORE_PATH: /home/runner/keystore.jks | |
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} | |
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | |
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }} | |
run: ./gradlew assembleRelease | |
- name: List files for debugging | |
run: ls -R app/build/outputs/apk/release/ | |
- name: Upload Release Build to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-artifacts | |
path: | | |
app/build/outputs/apk/release/ | |
- name: Create a tag | |
id: create_tag | |
run: | | |
TAG_NAME=$(git rev-parse --short HEAD) | |
echo "::set-output name=TAG_NAME::$TAG_NAME" | |
git tag $TAG_NAME | |
git push origin $TAG_NAME | |
- name: Create Github Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
prerelease: false | |
tags: ${{ steps.create_tag.outputs.TAG_NAME }} | |
files: | | |
app/build/outputs/apk/release/*.apk |