From 1c9d1c4758bde2d3611292b42ce64d8ba02574e0 Mon Sep 17 00:00:00 2001 From: Aman Chaturvedi Date: Tue, 12 Mar 2024 00:00:40 +0530 Subject: [PATCH] TP-39914 | fix --- .github/workflows/codePush.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codePush.yml b/.github/workflows/codePush.yml index 43cbe2e0..22766c45 100644 --- a/.github/workflows/codePush.yml +++ b/.github/workflows/codePush.yml @@ -61,12 +61,16 @@ jobs: runs-on: [default] if: success() && (github.event.inputs.environment == 'QA') # Only create tag for Prod releases, have put QA for testing steps: + - name: Create Git tag + run: | + TAG_NAME="${{ needs.generate.outputs.package_version }}"" + git tag $TAG_NAME + git push origin $TAG_NAME - name: Checkout uses: actions/checkout@v2 with: token: ${{ secrets.MY_REPO_PAT }} submodules: recursive - - name: Create release tag run: | TAG_NAME="${{ needs.generate.outputs.package_version }}"