Skip to content

Commit ae4a4a5

Browse files
Update create_github_release.yml (actions#9410)
1 parent a9200e9 commit ae4a4a5

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/create_github_release.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Create release for ${{ github.event.client_payload.ReleaseBranchName }}
16-
uses: actions/[email protected]
17-
env:
18-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
uses: ncipollo/[email protected]
1917
with:
20-
tag_name: ${{ github.event.client_payload.ReleaseBranchName }}
21-
release_name: ${{ github.event.client_payload.ReleaseTitle }}
18+
tag: ${{ github.event.client_payload.ReleaseBranchName }}
19+
name: ${{ github.event.client_payload.ReleaseTitle }}
2220
body: ${{ github.event.client_payload.ReleaseBody }}
2321
prerelease: ${{ github.event.client_payload.Prerelease }}
24-
commitish: ${{ github.event.client_payload.Commitish }}
22+
commit: ${{ github.event.client_payload.Commitish }}

0 commit comments

Comments
 (0)