mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-21 21:49:30 +02:00
Update release.yml
This commit is contained in:
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -22,10 +22,10 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
|
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
|
||||||
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
|
KEYSTORE_PASS: ${{ secrets.KEYSTORE_PASS }}
|
||||||
GPG_KEY: ${{ secrets.GPG_KEY }}
|
GPG_KEY: ${{ secrets.PGP_KEY_BASE64 }}
|
||||||
run: |
|
run: |
|
||||||
echo "${KEYSTORE_BASE64}" | base64 -d > apksign.keystore
|
echo "${KEYSTORE_BASE64}" | base64 -d > apksign.keystore
|
||||||
echo "$GPG_KEY" | gpg --import
|
echo "$GPG_KEY" | base64 -d | gpg --import
|
||||||
for apk in ./build/app/outputs/flutter-apk/*-release*.apk; do
|
for apk in ./build/app/outputs/flutter-apk/*-release*.apk; do
|
||||||
unsignedFn=${apk/-release/-unsigned}
|
unsignedFn=${apk/-release/-unsigned}
|
||||||
mv "$apk" "$unsignedFn"
|
mv "$apk" "$unsignedFn"
|
||||||
|
Reference in New Issue
Block a user