diff --git a/.github/workflows/preDeploy.yml b/.github/workflows/preDeploy.yml index 791e3c9abe6f..79a73632519c 100644 --- a/.github/workflows/preDeploy.yml +++ b/.github/workflows/preDeploy.yml @@ -107,6 +107,13 @@ jobs: body: Update version to ${{ steps.bumpVersion.outputs.NEW_VERSION }} labels: automerge + - name: Tag version + run: git tag ${{ steps.bumpVersion.outputs.NEW_VERSION }} + + #TODO: Once we add cherry picking, we will need run this from elsewhere + - name: 🚀 Push tags to trigger staging deploy 🚀 + run: git push --tags + - name: Update StagingDeployCash uses: Expensify/Expensify.cash/.github/actions/createOrUpdateStagingDeploy@master with: @@ -114,13 +121,6 @@ jobs: NPM_VERSION: ${{ steps.bumpVersion.outputs.NEW_VERSION }} NEW_PULL_REQUESTS: https://github.com/Expensify/Expensify.cash/pull/${{ needs.chooseDeployActions.outputs.mergedPullRequest }} - #TODO: Once we add cherry picking, we will need run this from elsewhere - - name: Tag version - run: git tag ${{ steps.bumpVersion.outputs.NEW_VERSION }} - - - name: 🚀 Push tags to trigger staging deploy 🚀 - run: git push --tags - # This Slack step is duplicated in all workflows, if you make a change to this step, make sure to update all # the other workflows with the same change - uses: 8398a7/action-slack@v3