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.
2 parents 784f1f1 + 4d7d57c commit 6cb2b9dCopy full SHA for 6cb2b9d
.github/workflows/release.yml
@@ -1,12 +1,9 @@
1
name: Release
2
3
on:
4
- workflow_dispatch:
5
- inputs:
6
- tags:
7
- description: Release Tag
8
- required: true
9
- type: string
+ push:
+ tags:
+ - "v[0-9]+.[0-9]+.[0-9]+"
10
11
jobs:
12
release:
CONTRIBUTING.md
@@ -117,3 +117,12 @@ This will allow a chance to talk it over with the owners and validate your appro
117
<!-- github-only -->
118
119
[code of conduct]: CODE_OF_CONDUCT.md
120
+
121
+## How to release a new version
122
123
+Just push a tag starting with v and using semantic versioning. Eg.
124
125
+```sh
126
+git tag v2.0.0
127
+git push --tags
128
+```
0 commit comments