Skip to content

Commit ddc64b9

Browse files
committed
Update config
1 parent 865564d commit ddc64b9

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

.github/actions/build-android/action.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ runs:
5858

5959
- name: Decode upload.keystore
6060
env:
61-
KEYSTORE_BASE64: ${{ inputs.keystoreBase64 }}
61+
UPLOAD_KEYSTORE_BASE64: ${{ inputs.keystoreBase64 }}
6262
run: |
6363
mkdir -p android/keystores
64-
echo $KEYSTORE_BASE64 | base64 --decode > android/keystores/upload.keystore
64+
echo $UPLOAD_KEYSTORE_BASE64 | base64 --decode > android/keystores/upload.keystore
6565
shell: bash
6666

6767
- name: Decode Play Store credentials
@@ -71,10 +71,11 @@ runs:
7171
mkdir -p android/fastlane
7272
echo $PLAY_STORE_CREDENTIALS_BASE64 | base64 --decode > android/fastlane/play-store-credentials.json
7373
shell: bash
74-
# - name: Verify Keystore File
75-
# run: |
76-
# keytool -list -v -keystore ./android/keystores/upload.keystore -storepass ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
77-
# shell: bash
74+
- name: Verify Keystore File
75+
run: |
76+
keytool -list -v -keystore ./android/keystores/upload.keystore -storepass ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
77+
shell: bash
78+
7879
- name: Build Android Library with Fastlane
7980
run: |
8081
cd android

.github/workflows/MiNe2e.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,6 @@ jobs:
102102
- name: "Check out code"
103103
uses: actions/checkout@v4
104104

105-
# - name: Retrieve the secrets and decode it to a file
106-
# env:
107-
# UPLOAD_KEYSTORE_BASE64: ${{ secrets.UPLOAD_KEYSTORE_BASE64 }}
108-
# PLAY_STORE_CREDENTIALS_BASE64: ${{ secrets.PLAY_STORE_CREDENTIALS_BASE64 }}
109-
# run: |
110-
# mkdir -p ./android/keystores
111-
# echo $UPLOAD_KEYSTORE_BASE64 | base64 --decode > ./android/keystores/upload.keystore
112-
# echo $PLAY_STORE_CREDENTIALS_BASE64 | base64 --decode > ./android/fastlane/play-store-credentials.json
113-
# shell: bash
114-
115105
- name: Build Android apk
116106
uses: ./.github/actions/build-android
117107
with:
@@ -122,10 +112,6 @@ jobs:
122112
keystorePassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
123113
keystoreKeyPassword: ${{ secrets.ANDROID_KEYSTORE_KEY_PASSWORD }}
124114
playStoreCredentialsBase64: ${{ secrets.PLAY_STORE_CREDENTIALS_BASE64 }}
125-
# keystorePath: ${{ secrets.UPLOAD_KEYSTORE_BASE64 }}
126-
# playStoreCredentialsPath: ${{ secrets.PLAY_STORE_CREDENTIALS_BASE64 }}
127-
# # keystorePath: ${{ github.workspace }}/android/keystores/upload.keystore
128-
# # playStoreCredentialsPath: ${{ github.workspace }}/android/fastlane/play-store-credentials.json
129115

130116
ios-app:
131117
runs-on: macOS-15

0 commit comments

Comments
 (0)