Skip to content

Commit 0fb1c49

Browse files
committed
Fix CI env variable
1 parent 5ad0731 commit 0fb1c49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-tag.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
mkdir -p "${TMP_SERVICEKEY_DIR}"
108108
TMP_SERVICEKEY_FILE_PATH="${TMP_SERVICEKEY_DIR}"/service_account.json
109109
echo $ENCODED_SERVICE_KEY | base64 -di > "${TMP_SERVICEKEY_FILE_PATH}"
110-
echo "SUPPLY_JSON_KEY=$(echo TMP_SERVICEKEY_FILE_PATH)" >> $GITHUB_ENV
110+
echo "SUPPLY_JSON_KEY=$(echo $TMP_SERVICEKEY_FILE_PATH)" >> $GITHUB_ENV
111111
112112
- name: Checkout
113113
uses: actions/checkout@v3
@@ -134,7 +134,7 @@ jobs:
134134
ruby-version: 2.7.6
135135
bundler-cache: true
136136

137-
- name: Assemble beta APK
137+
- name: Assemble beta and upload to Google Play
138138
if: contains(steps.tagger.outputs.tag, '-beta')
139139
run: bundle exec fastlane beta
140140
env:
@@ -143,7 +143,7 @@ jobs:
143143
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
144144
BUGSNAG_API_KEY: ${{ secrets.BUGSNAG_API_KEY }}
145145

146-
- name: Assemble production APK
146+
- name: Assemble production and upload to Google Play
147147
if: "!contains(steps.tagger.outputs.tag, '-beta')"
148148
run: bundle exec fastlane production
149149
env:

0 commit comments

Comments
 (0)