File tree 1 file changed +4
-19
lines changed
1 file changed +4
-19
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,10 @@ jobs:
12
12
name : Release
13
13
runs-on : ubuntu-latest
14
14
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
-
22
15
- name : Get Previous Release Tag and Determine Next Tag
23
16
id : determine-next-tag
24
17
uses : actions/github-script@v7
25
18
with :
26
- github-token : " ${{ steps.app-token.outputs.token }}"
27
19
result-encoding : string
28
20
script : |
29
21
const { data: releases } = await github.rest.repos.listReleases({
54
46
55
47
return `${nextMajorMinor}.${nextPatch}`;
56
48
57
- - name : Create Release
58
- uses : actions/github-script@v7
49
+ - uses : ncipollo/release-action@v1
59
50
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 }}
You can’t perform that action at this time.
0 commit comments