Skip to content

Commit 08047f0

Browse files
authored
Migrating create release action.
1 parent 59d0205 commit 08047f0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/release.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,9 @@ jobs:
1919
myToken: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Create Release
2121
id: create_release
22-
uses: actions/[email protected]
23-
env:
24-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
uses: ncipollo/release-action@v1
2523
with:
26-
tag_name: ${{ github.ref }}
27-
release_name: Release ${{ github.ref }}
24+
tag: ${{ github.ref }}
25+
name: Release ${{ github.ref }}
2826
body: ${{ steps.changelog.outputs.changelog }}
29-
draft: false
30-
prerelease: false
27+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)