Skip to content

Commit 9cf4527

Browse files
authored
Merge pull request #5539 from Expensify/roryabraham-cherry-pick-staging-5473
2 parents 3dd9bd8 + 9ace777 commit 9cf4527

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

.github/workflows/cherryPick.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,25 @@ jobs:
189189
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
190190
PULL_REQUEST: ${{ steps.createPullRequest.outputs.pr_number }}
191191

192+
# Create a local git tag on staging so that GitUtils.getPullRequestsMergedBetween can use `git log` to generate a
193+
# list of pull requests that were merged between this version tag and another.
194+
# NOTE: This tag is only used locally and shouldn't be pushed to the remote.
195+
# If it was pushed, that would trigger the staging deploy which is handled in a separate workflow (deploy.yml)
196+
- name: Tag staging
197+
if: ${{ github.actor != 'OSBotify' }}
198+
run: |
199+
git checkout staging
200+
git pull origin staging
201+
git tag ${{ env.NEW_VERSION }}
202+
203+
# Note: we only run this action if the PR was manually CP'd. Otherwise, the deploy checklist is updated from preDeploy.yml
204+
- name: Update StagingDeployCash
205+
if: ${{ github.actor != 'OSBotify' }}
206+
uses: Expensify/App/.github/actions/createOrUpdateStagingDeploy@main
207+
with:
208+
GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }}
209+
NPM_VERSION: ${{ env.NEW_VERSION }}
210+
192211
- name: 'Announces a CP failure in the #announce Slack room'
193212
uses: 8398a7/action-slack@v3
194213
if: ${{ failure() }}

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ android {
150150
minSdkVersion rootProject.ext.minSdkVersion
151151
targetSdkVersion rootProject.ext.targetSdkVersion
152152
multiDexEnabled rootProject.ext.multiDexEnabled
153-
versionCode 1001010205
154-
versionName "1.1.2-5"
153+
versionCode 1001010206
154+
versionName "1.1.2-6"
155155
}
156156
splits {
157157
abi {

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</dict>
3232
</array>
3333
<key>CFBundleVersion</key>
34-
<string>1.1.2.5</string>
34+
<string>1.1.2.6</string>
3535
<key>ITSAppUsesNonExemptEncryption</key>
3636
<false/>
3737
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.1.2.5</string>
22+
<string>1.1.2.6</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.1.2-5",
3+
"version": "1.1.2-6",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

0 commit comments

Comments
 (0)