We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae737c9 commit 76ce8e0Copy full SHA for 76ce8e0
.github/workflows/auto-tag.yml
@@ -9,18 +9,16 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- id: compute_tag
12
- uses: craig-day/compute-tag@v10
+ uses: craig-day/compute-tag@v18
13
with:
14
github_token: ${{ github.token }}
15
version_scheme: continuous
16
- version_type: major
+ version_type: patch
17
18
- name: create release
19
- uses: actions/create-release@v1
+ uses: ncipollo/release-action@v1
20
21
- tag_name: ${{ steps.compute_tag.outputs.next_tag }}
22
- release_name: ${{ steps.compute_tag.outputs.next_tag }}
+ tag: ${{ steps.compute_tag.outputs.next_tag }}
23
body: >
24
Automatic release of ${{ steps.compute_tag.outputs.next_tag }}
25
- env:
26
- GITHUB_TOKEN: ${{ github.token }}
+ token: ${{ github.token }}
0 commit comments