Skip to content

Commit 76ce8e0

Browse files
fix: update workflow
Signed-off-by: Oskar Manhart <[email protected]>
1 parent ae737c9 commit 76ce8e0

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/auto-tag.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,16 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- id: compute_tag
12-
uses: craig-day/compute-tag@v10
12+
uses: craig-day/compute-tag@v18
1313
with:
1414
github_token: ${{ github.token }}
1515
version_scheme: continuous
16-
version_type: major
16+
version_type: patch
1717

1818
- name: create release
19-
uses: actions/create-release@v1
19+
uses: ncipollo/release-action@v1
2020
with:
21-
tag_name: ${{ steps.compute_tag.outputs.next_tag }}
22-
release_name: ${{ steps.compute_tag.outputs.next_tag }}
21+
tag: ${{ steps.compute_tag.outputs.next_tag }}
2322
body: >
2423
Automatic release of ${{ steps.compute_tag.outputs.next_tag }}
25-
env:
26-
GITHUB_TOKEN: ${{ github.token }}
24+
token: ${{ github.token }}

0 commit comments

Comments
 (0)