Skip to content

Commit

Permalink
fix(*): update tag in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed May 27, 2024
1 parent 15eae51 commit e785257
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,10 @@ jobs:
id: create_release_id
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
tag: ${{ github.ref_name }} ${{ steps.semver.outputs.patch }}
run: |
gh release create "$tag ${{ steps.semver.outputs.patch }}" \
git tag -a $tag -m "Release $tag"
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#v}" \
--generate-notes \
Expand Down

0 comments on commit e785257

Please sign in to comment.