Skip to content

Commit f7f6167

Browse files
authored
Merge pull request #51814 from Expensify/andrew-hybrid-fixes3
[No QA]Fix iOS production submission and asset uploading
2 parents db1700a + 090a322 commit f7f6167

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ jobs:
814814
815815
# Loop through each file and upload individually (so if one fails, we still have other platforms uploaded)
816816
for file_entry in "${files[@]}"; do
817-
gh release upload "$APP_VERSION" --repo "$GITHUB_REPOSITORY" --clobber "$file_entry"
817+
gh release upload ${{ needs.prep.outputs.APP_VERSION }} --repo ${{ github.repository }} --clobber "$file_entry"
818818
done
819819
env:
820820
GITHUB_TOKEN: ${{ github.token }}
@@ -873,7 +873,7 @@ jobs:
873873
874874
# Loop through each file and upload individually (so if one fails, we still have other platforms uploaded)
875875
for file_entry in "${files[@]}"; do
876-
gh release upload "$APP_VERSION" --repo "$GITHUB_REPOSITORY" --clobber "$file_entry"
876+
gh release upload ${{ needs.prep.outputs.APP_VERSION }} --repo ${{ github.repository }} --clobber "$file_entry"
877877
done
878878
env:
879879
GITHUB_TOKEN: ${{ github.token }}

fastlane/Appfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
app_identifier("com.chat.expensify.chat") # The bundle identifier of your app
2-
apple_id("[email protected]") # Your Apple email address
3-
4-
itc_team_id("152696") # App Store Connect Team ID
5-
team_id("368M544MTT") # Developer Portal Team ID
1+
# See https://docs.fastlane.tools/advanced/Appfile/
2+
apple_id("[email protected]")
3+
itc_team_id("152696")
4+
team_id("368M544MTT")
65

76
for_lane :build_hybrid, :build_unsigned_hybrid, :upload_testflight_hybrid do
7+
# For HybridApp build tasks, use the OldApp bundle identifier
88
app_identifier("com.expensify.expensifylite")
9+
else
10+
app_identifier("com.expensify.expensify")
911
end

0 commit comments

Comments
 (0)