Skip to content

Commit

Permalink
build: fixed base64 key file name
Browse files Browse the repository at this point in the history
  • Loading branch information
zatrit committed Aug 18, 2024
1 parent a592d8b commit 9630ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo -e $SIGN_CERT > cert.b64
base64 -d cert.b64 | tr -d '\n' > cert.der
# Decode key
echo -e $SIGN_KEY > cert.b64
echo -e $SIGN_KEY > key.b64
base64 -d key.b64 | tr -d '\n' > key.der
# Sign APK file with private key
${{ env.APKSIGNER }} sign --key key.der --cert cert.der app-release.apk
Expand Down

0 comments on commit 9630ad5

Please sign in to comment.