Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
fix: android beta builds
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbillman committed May 3, 2024
1 parent 180801f commit 47ba0d4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android-beta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: DIDPay Android Beta
name: Android Beta

on:
schedule:
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Create didpay.keystore and key.properties file
run: |
run: echo "${{ secrets.BETA_ANDROID_KEY_STORE }}" | base64 --decode > android/app/didpay.keystore
echo "${{ secrets.BETA_ANDROID_KEY_STORE }}" | base64 --decode > android/app/didpay.keystore
echo "storePassword=${{ secrets.BETA_ANDROID_KEYSTORE_PASSWORD }}" >> android/key.properties
echo "keyPassword=${{ secrets.BETA_ANDROID_KEYSTORE_PASSWORD }}" >> android/key.properties
echo "keyAlias=didpay" >> android/key.properties
Expand All @@ -48,7 +48,7 @@ jobs:
echo "::set-output name=version_name::$VERSION_NAME"
- name: Build appbundle
run: just build-app-bundle
run: just android-app-bundle

- name: Upload build artifact
uses: actions/upload-artifact@v3
Expand Down
8 changes: 7 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,11 @@
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"terminal.integrated.env.osx": {
"ACTIVE_HERMIT": null,
"HERMIT_ENV": null,
"HERMIT_ENV_OPS": null,
"HERMIT_BIN": null
},
}

0 comments on commit 47ba0d4

Please sign in to comment.