diff --git a/.github/workflows/version_release.yml b/.github/workflows/version_release.yml index e6d571c..64050cd 100644 --- a/.github/workflows/version_release.yml +++ b/.github/workflows/version_release.yml @@ -48,7 +48,12 @@ jobs: fi git commit -m 'chore: files updated with tag: ${{ steps.generate_tag.outputs.new_tag }}' git push - + + - name: "Create tag" + run: | + git tag -a "${{ steps.generate_tag.outputs.new_tag }}" -m "chore: files updated with tag: ${{ steps.generate_tag.outputs.new_tag }}" + git push origin "${{ steps.generate_tag.outputs.new_tag }}" + - name: "Get ms3 package & apply transform" continue-on-error: true run: | @@ -65,4 +70,3 @@ jobs: name: "${{ github.event.pull_request.title }}" tag: "${{ steps.generate_tag.outputs.new_tag }}" makeLatest: "latest" - commit: "${{ github.event.pull_request.base.ref }}"