Compare commits
5 Commits
v1.0.1
...
170326dd85
| Author | SHA1 | Date | |
|---|---|---|---|
| 170326dd85 | |||
| 74de67de59 | |||
| b0765795b8 | |||
| 489c0d5c4f | |||
| 967dc7d09a |
@@ -3,7 +3,8 @@ name: Build and Release to F-Droid
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- '*'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy:
|
||||||
@@ -34,10 +35,10 @@ jobs:
|
|||||||
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
|
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
|
||||||
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
|
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
|
||||||
run: |
|
run: |
|
||||||
# Decode the base64 string back into the binary .jks file
|
# Decode the base64 string back into the binary .jks file
|
||||||
echo "$KEYSTORE_BASE64" | base64 --decode > android/app/upload-keystore.jks
|
echo "$KEYSTORE_BASE64" | base64 --decode > android/app/upload-keystore.jks
|
||||||
|
|
||||||
# Create the key.properties file that build.gradle expects
|
# Create the key.properties file that build.gradle expects
|
||||||
echo "storePassword=$KEY_PASSWORD" > android/key.properties
|
echo "storePassword=$KEY_PASSWORD" > android/key.properties
|
||||||
echo "keyPassword=$KEY_PASSWORD" >> android/key.properties
|
echo "keyPassword=$KEY_PASSWORD" >> android/key.properties
|
||||||
echo "keyAlias=$KEY_ALIAS" >> android/key.properties
|
echo "keyAlias=$KEY_ALIAS" >> android/key.properties
|
||||||
|
|||||||
Reference in New Issue
Block a user