Skip to content

Commit ed3b34d

Browse files
authored
Update release.yml
1 parent 355989f commit ed3b34d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release.yml

+21
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,24 @@ jobs:
2525
run: npm publish --access public
2626
env:
2727
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
28+
- name: Create and push tag
29+
run: |
30+
git config --global user.name "${{ github.actor }}"
31+
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
32+
git tag -a $TAG -m "Release v$TAG"
33+
git push origin $TAG
34+
env:
35+
TAG: ${{ github.event.inputs.version }}
36+
37+
- name: Build Changelog
38+
id: github_release
39+
uses: mikepenz/release-changelog-builder-action@v3
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
43+
- name: Create Release
44+
uses: mikepenz/[email protected]
45+
with:
46+
body: ${{steps.github_release.outputs.changelog}}
47+
tag_name: ${{ github.event.inputs.version }}
48+

0 commit comments

Comments
 (0)