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 5c88417 commit 7779484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ jobs:
- name: Create Tag
uses: rickstaa/[email protected]
with:
tag: ${{ github.ref_name }} ${{ steps.semver.outputs.patch }}
tag: v${{ steps.semver.outputs.patch }}-${{ github.ref_name }}
- name: Create release
id: create_release_id
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }} ${{ steps.semver.outputs.patch }}
tag: Release v${{ steps.semver.outputs.patch }}-${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
Expand Down

0 comments on commit 7779484

Please sign in to comment.