We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33702ff commit e77958aCopy full SHA for e77958a
.github/workflows/npm-publish.yml
@@ -7,11 +7,18 @@ jobs:
7
create-tag:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v3
11
- - uses: rickstaa/action-create-tag@v1
+ - uses: actions/checkout@v2
+ - name: Bump version and push tag
12
+ id: tag_version
13
+ uses: mathieudutour/github-tag-action@v6.0
14
with:
- tag: "latest"
- message: "Latest release"
15
+ github_token: ${{ secrets.GITHUB_TOKEN }}
16
+ - name: Create a GitHub release
17
+ uses: ncipollo/release-action@v1
18
+ with:
19
+ tag: ${{ steps.tag_version.outputs.new_tag }}
20
+ name: Release ${{ steps.tag_version.outputs.new_tag }}
21
+ body: ${{ steps.tag_version.outputs.changelog }}
22
npm-publish:
23
name: npm-publish
24
0 commit comments