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 ce49769 commit fccf7a3Copy full SHA for fccf7a3
.github/workflows/release.yaml
@@ -63,13 +63,13 @@ jobs:
63
id: get_version
64
run: |
65
version=$(git describe --abbrev=0 --match "v*.*.*" || echo "v0.1.0")
66
- echo ::set-output name=version::$version
+ echo "{version=$version}" >> $GITHUB_OUTPUT
67
- name: Next Version
68
uses: technicallyjosh/next-version-action@v1
69
id: version
70
with:
71
version: ${{ steps.get_version.outputs.version }}
72
- type: minor
+ type: ${{ inputs.version_type }}
73
- name: Tag
74
uses: rickstaa/action-create-tag@v1
75
0 commit comments