Skip to content

Commit 14701c3

Browse files
luacmartinsOSBotify
authored andcommitted
Merge pull request #48854 from Expensify/Rory-FixDeployAgain
[No QA] Fix typo in deploy.yml (cherry picked from commit 7859329) (CP triggered by roryabraham)
1 parent e3441b1 commit 14701c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Get Android native version
106106
id: getAndroidVersion
107-
run: echo "VERSION_CODE=$(grep -o 'versionCode\s\+[0-9]\+' android/app/build.gradle | awk '{ print $2 }')" >> "$GITHUB_OUTPUTS"
107+
run: echo "VERSION_CODE=$(grep -o 'versionCode\s\+[0-9]\+' android/app/build.gradle | awk '{ print $2 }')" >> "$GITHUB_OUTPUT"
108108

109109
- name: Run Fastlane
110110
run: bundle exec fastlane android ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) && 'production' || 'beta' }}
@@ -267,7 +267,7 @@ jobs:
267267

268268
- name: Get iOS native version
269269
id: getIOSVersion
270-
run: echo "IOS_VERSION=$(echo '${{ needs.prep.outputs.APP_VERSION }}' | tr '-' '.')" >> "$GITHUB_OUTPUTS"
270+
run: echo "IOS_VERSION=$(echo '${{ needs.prep.outputs.APP_VERSION }}' | tr '-' '.')" >> "$GITHUB_OUTPUT"
271271

272272
- name: Run Fastlane
273273
run: bundle exec fastlane ios ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) && 'production' || 'beta' }}

0 commit comments

Comments
 (0)