Skip to content

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaSat committed Mar 12, 2024
1 parent 8618a40 commit 9357a92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: "Build: Android"
on:
workflow_dispatch:
keystore:
type: string
description: base64 keystore
workflow_call:
push:
branches: [ "main" ]
Expand Down Expand Up @@ -37,7 +40,7 @@ jobs:
with:
fileName: 'keystore.jks'
fileDir: './'
encodedString: ${{ secrets.KEYSTORE }}
encodedString: ${{ github.event.inputs.keystore || secrets.KEYSTORE }}

- name: 'Build Android Release'
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ env:
jobs:
android-build:
uses: KoalaSat/nostros/.github/workflows/android-build.yml@main
with:
keystore: ${{ secrets.KEYSTORE }}
release:
needs: [android-build]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9357a92

Please sign in to comment.