Skip to content

Commit

Permalink
Add build workflow for releasing APK
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Feb 2, 2024
1 parent 5675caa commit f839d63
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build & Publish Release APK

on:
push:
branches:
- stable
tags:
- '*'
workflow_dispatch:


jobs:
Gradle:
runs-on: ubuntu-latest
environment:
name: Builder
permissions:
contents: write

steps:

- name: checkout code
uses: actions/checkout@v2

- name: Build Signed APK
uses: TeamNecta/build-signed-apk@main
with:
keystore_b64: ${{ secrets.BASE_64_SIGNING_KEY }}
keystore_password: ${{ secrets.STORE_PASSWORD }}
key_alias: "key0"
key_password: ${{ secrets.KEY_PASSWORD }}

- name: Prepare Tag
id: tag
run: echo "version=$(date +'v%y.%m.%d.%H%M%S')" >> $GITHUB_OUTPUT

- name: Release APK
uses: ncipollo/release-action@v1
with:
artifacts: app/build/outputs/apk/release/*.apk
tag: ${{ steps.tag.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f839d63

Please sign in to comment.