From 15207795c1b5c23d263189f53b732bb120b6fa29 Mon Sep 17 00:00:00 2001 From: marcelmmc Date: Fri, 27 Oct 2023 03:02:20 +0200 Subject: [PATCH] fix: add the version number to JSON descriptor --- .github/workflows/version_release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 }}"