Skip to content

Commit dacc2e8

Browse files
committed
Update Release Pipeline
1 parent b5e6d24 commit dacc2e8

File tree

1 file changed

+4
-19
lines changed

1 file changed

+4
-19
lines changed

.github/workflows/release.yaml

+4-19
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,10 @@ jobs:
1212
name: Release
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Generate Token
16-
uses: actions/create-github-app-token@v1
17-
id: app-token
18-
with:
19-
app-id: "${{ secrets.BOT_APP_ID }}"
20-
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
21-
2215
- name: Get Previous Release Tag and Determine Next Tag
2316
id: determine-next-tag
2417
uses: actions/github-script@v7
2518
with:
26-
github-token: "${{ steps.app-token.outputs.token }}"
2719
result-encoding: string
2820
script: |
2921
const { data: releases } = await github.rest.repos.listReleases({
@@ -54,15 +46,8 @@ jobs:
5446
5547
return `${nextMajorMinor}.${nextPatch}`;
5648
57-
- name: Create Release
58-
uses: actions/github-script@v7
49+
- uses: ncipollo/release-action@v1
5950
with:
60-
github-token: "${{ steps.app-token.outputs.token }}"
61-
script: |
62-
await github.rest.repos.createRelease({
63-
owner: context.repo.owner,
64-
repo: context.repo.repo,
65-
tag_name: "${{ steps.determine-next-tag.outputs.result }}",
66-
name: "${{ steps.determine-next-tag.outputs.result }}",
67-
generate_release_notes: true,
68-
});
51+
generateReleaseNotes: true
52+
tag: ${{ steps.determine-next-tag.outputs.result }}
53+
name: ${{ steps.determine-next-tag.outputs.result }}

0 commit comments

Comments
 (0)