Skip to content

Commit

Permalink
Merge pull request #49 from marat2509/main
Browse files Browse the repository at this point in the history
workflow: disable signing and releasing without signing secrets
  • Loading branch information
marat2509 authored Jan 6, 2024
2 parents 0e0cd9d + 54ed674 commit 77a5fee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ jobs:
path: app/build/outputs/apk/release/*.apk

- name: Sign Release
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
if: ${{ env.SIGNING_KEY != '' }}
uses: r0adkll/sign-android-release@v1
id: sign_app
with:
Expand All @@ -88,6 +91,9 @@ jobs:
keyPassword: ${{ secrets.KEY_PASSWORD }}

- name: Release apk
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
if: ${{ env.SIGNING_KEY != '' }}
uses: ncipollo/release-action@v1.12.0
with:
token: ${{ github.token }}
Expand Down

0 comments on commit 77a5fee

Please sign in to comment.