Skip to content

Commit c5c0233

Browse files
committed
refactor: release workflow based on release-drafter
actions/checkout is now defunct and github wants developers to use other workflow plugins, this is exploring the use of release-drafter REFS #88
1 parent a3961fd commit c5c0233

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/create-draft-release.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,9 @@ jobs:
99
create-draft-release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/create-release@v1
12+
- uses: actions/checkout@v4
13+
- uses: release-drafter/release-drafter@v5
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
with:
17-
tag_name: ${{ github.ref }}
18-
release_name: ${{ github.ref }}
19-
draft: true
2017
prerelease: false

0 commit comments

Comments
 (0)