Skip to content

Commit

Permalink
ci: set input tag for the release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingerid committed Nov 27, 2023
1 parent 44ce96d commit 41992af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Create and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.0
uses: mathieudutour/github-tag-action@v6.3
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
default_bump: false
Expand All @@ -68,6 +68,9 @@ jobs:
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
skipIfReleaseExists: true
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: "dist/*"
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
draft: false
Expand Down

0 comments on commit 41992af

Please sign in to comment.