We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9845435 commit 2565eebCopy full SHA for 2565eeb
.github/workflows/update.yml
@@ -70,13 +70,15 @@ jobs:
70
71
# Align and sign the APK
72
- name: Sign APK
73
+ shell: bash
74
+ env:
75
+ KEY_ALIAS: ${{ secrets.TEST_KS_ALIAS }}
76
+ KEY_PASSWORD: ${{ secrets.TEST_KS_KEY }}
77
run: |
78
APK_INPUT="owncloud-${{ github.sha }}.apk"
79
APK_ALIGNED="owncloud-${{ github.sha }}-aligned.apk"
80
APK_SIGNED="owncloudSigned-${{ github.sha }}.apk"
81
KEYSTORE="./test.keystore"
- KEY_ALIAS="${{ secrets.TEST_KS_ALIAS }}"
- KEY_PASSWORD="${{ secrets.TEST_KS_KEY }}"
82
83
# Align APK for optimal performance
84
echo "Aligning APK..."
0 commit comments