Skip to content

Commit

Permalink
fix: semantic release git tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jossef committed Feb 23, 2022
1 parent ac09ba9 commit 70f03c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Expand Up @@ -52,7 +52,7 @@ jobs:
git config --local user.name "GitHub Action"
git add -A
git commit -m "docs(): bumping release ${{ steps.semantic_release_info.outputs.version }}"
git tag ${{ steps.semantic_release_info.outputs.version }}
git tag ${{ steps.semantic_release_info.outputs.git_tag }}
- name: Push changes
if: ${{ steps.semantic_release_info.outputs.version }}
Expand All @@ -67,8 +67,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ steps.semantic_release_info.outputs.version }}
release_name: ${{ steps.semantic_release_info.outputs.version }}
tag_name: ${{ steps.semantic_release_info.outputs.git_tag }}
release_name: ${{ steps.semantic_release_info.outputs.git_tag }}
body: ${{ steps.semantic_release_info.outputs.notes }}
draft: false
prerelease: false
Expand Down

0 comments on commit 70f03c6

Please sign in to comment.