Skip to content
This repository was archived by the owner on Oct 10, 2024. It is now read-only.

Commit b8e69e3

Browse files
authored
fix: switch release action to softprops/action-gh-release (#810)
1 parent 04e5749 commit b8e69e3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ jobs:
1818
github-token: ${{ secrets.CHANGELOG_RELEASE }}
1919

2020
- name: create release
21-
uses: actions/create-release@v1
21+
uses: softprops/action-gh-release@v2
2222
if: ${{ steps.changelog.outputs.skipped == 'false' }}
23-
env:
24-
GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }}
2523
with:
24+
name: ${{ steps.changelog.outputs.tag }}
2625
tag_name: ${{ steps.changelog.outputs.tag }}
27-
release_name: ${{ steps.changelog.outputs.tag }}
2826
body: ${{ steps.changelog.outputs.clean_changelog }}
27+
token: ${{ secrets.CHANGELOG_RELEASE }}

0 commit comments

Comments
 (0)