Skip to content

Commit f2e7a4b

Browse files
authored
Update build-and-release.yml
1 parent 6fa36af commit f2e7a4b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,20 @@ jobs:
2727
- name: Set up Flutter
2828
uses: subosito/flutter-action@v2
2929
with:
30-
# flutter-version: '3.32.8'
3130
channel: 'stable'
3231

3332
- name: Create keystore properties file
3433
run: |
3534
echo storePassword=${{ secrets.KEY_STORE_PASSWORD }} > android/key.properties
3635
echo keyPassword=${{ secrets.KEY_PASSWORD }} >> android/key.properties
3736
echo keyAlias=${{ secrets.KEY_ALIAS }} >> android/key.properties
38-
echo storeFile=keystore.jks >> android/key.properties
37+
echo storeFile=app/keystore.jks >> android/key.properties
3938
shell: bash
4039

4140
- name: Decode Keystore
4241
run: |
4342
$bytes = [System.Convert]::FromBase64String("${{ secrets.KEY_STORE }}")
44-
[IO.File]::WriteAllBytes("keystore.jks", $bytes)
43+
[IO.File]::WriteAllBytes("android/app/keystore.jks", $bytes)
4544
shell: powershell
4645

4746
- name: Get dependencies
@@ -95,4 +94,4 @@ jobs:
9594
| Universal | <a href="https://github.com/code3-dev/ProxyCloud/releases/download/${{ env.TAG_NAME }}/proxycloud-universal.apk"><img src="https://img.shields.io/badge/Android-Universal-3DDC84?style=for-the-badge&logo=android&logoColor=white" alt="Android Universal"></a> |
9695
| armeabi-v7a | <a href="https://github.com/code3-dev/ProxyCloud/releases/download/${{ env.TAG_NAME }}/proxycloud-armeabi-v7a.apk"><img src="https://img.shields.io/badge/Android-armeabi--v7a-3DDC84?style=for-the-badge&logo=android&logoColor=white" alt="Android armeabi-v7a"></a> |
9796
| arm64-v8a | <a href="https://github.com/code3-dev/ProxyCloud/releases/download/${{ env.TAG_NAME }}/proxycloud-arm64-v8a.apk"><img src="https://img.shields.io/badge/Android-arm64--v8a-3DDC84?style=for-the-badge&logo=android&logoColor=white" alt="Android arm64-v8a"></a> |
98-
| x86_64 | <a href="https://github.com/code3-dev/ProxyCloud/releases/download/${{ env.TAG_NAME }}/proxycloud-x86_64.apk"><img src="https://img.shields.io/badge/Android-x86_64-3DDC84?style=for-the-badge&logo=android&logoColor=white" alt="Android x86_64"></a> |
97+
| x86_64 | <a href="https://github.com/code3-dev/ProxyCloud/releases/download/${{ env.TAG_NAME }}/proxycloud-x86_64.apk"><img src="https://img.shields.io/badge/Android-x86_64-3DDC84?style=for-the-badge&logo=android&logoColor=white" alt="Android x86_64"></a> |

0 commit comments

Comments
 (0)