File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,21 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - name : Checkout repo
14
+ uses : actions/checkout@v3
14
15
15
- - name : conventional Changelog Action
16
+ - name : Changelog + Version update
16
17
id : changelog
17
- uses : TriPSs/conventional-changelog-action@v3.7.1
18
+ uses : TriPSs/conventional-changelog-action@v3
18
19
with :
19
20
github-token : ${{ secrets.PA_TOKEN }}
20
21
version-file : ' ./version.yaml'
21
22
22
- - name : create release
23
- uses : actions/create-release@v1
24
- if : ${{ steps.changelog.outputs.skipped == 'false' }}
25
- env :
26
- GITHUB_TOKEN : ${{ secrets.PA_TOKEN }}
23
+ - name : Create Release
24
+ if : steps.changelog.outputs.skipped == 'false'
25
+ uses : ncipollo/release-action@v1
27
26
with :
28
- tag_name : ${{ steps.changelog.outputs.tag }}
29
- release_name : ${{ steps.changelog.outputs.tag }}
27
+ token : ${{ secrets.PA_TOKEN }}
28
+ tag : ${{ steps.changelog.outputs.tag }}
29
+ name : ${{ steps.changelog.outputs.tag }}
30
30
body : ${{ steps.changelog.outputs.clean_changelog }}
You can’t perform that action at this time.
0 commit comments