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 ed42d3c commit 5e6479eCopy full SHA for 5e6479e
.github/workflows/release.yml
@@ -1,15 +1,15 @@
1
-name: release
+name: Releases
2
3
-on: push
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Release
12
- uses: softprops/action-gh-release@v1
13
- if: startsWith(github.ref, 'refs/tags/')
+ - uses: actions/checkout@v2
+ - uses: ncipollo/release-action@v1
14
with:
15
body: Check CHANGELOG.md for details
scripts/tag.sh
@@ -31,7 +31,7 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
31
| sed 's/^\.\///' \
32
| sort)
33
34
-git tag ${TAG} -m "Version ${TAG}"
+git tag ${TAG}
35
36
for dir in $PACKAGE_DIRS
37
do
0 commit comments