We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355989f commit ed3b34dCopy full SHA for ed3b34d
.github/workflows/release.yml
@@ -25,3 +25,24 @@ jobs:
25
run: npm publish --access public
26
env:
27
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
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