Skip to content

Commit

Permalink
fix: sanitize release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
italopessoa committed Oct 16, 2024
1 parent ffc50d2 commit 38c5a07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ jobs:
id: sanitize-version
run: |
echo ${{ needs.semantic-release.outputs.version }}
echo "version=${{ needs.semantic-release.outputs.version#v }}" >> $GITHUB_OUTPUT
TAG=${{ needs.semantic-release.outputs.version }}
echo "version=${TAG#v}" >> $GITHUB_OUTPUT
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 38c5a07

Please sign in to comment.