Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
victorbnl committed Aug 1, 2023
1 parent 2a8d298 commit 275f3c0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on:
- push
- workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- uses: victorbnl/build-signed-apk@test
with:
keystore_b64: ${{ secrets.keystore_b64 }}
keystore_password: ${{ secrets.keystore_password }}
key_alias: ${{ secrets.key_alias }}
key_password: ${{ secrets.key_password }}

- uses: actions/upload-artifact@v3
with:
name: apk
path: app/build/outputs/apk/release/app-release.apk

0 comments on commit 275f3c0

Please sign in to comment.