We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c189b commit 80a8a5fCopy full SHA for 80a8a5f
3 files changed
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: release
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ goreleaser:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ -
13
+ name: Checkout
14
+ uses: actions/checkout@v2
15
+ with:
16
+ fetch-depth: 0
17
18
+ name: Run GoReleaser
19
+ uses: goreleaser/goreleaser-action@v2
20
21
+ version: latest
22
+ args: release --rm-dist
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.gitignore
@@ -0,0 +1,3 @@
+.idea/
+dist/
.goreleaser.yaml
@@ -0,0 +1,8 @@
+builds:
+ - skip: true
+changelog:
+ sort: asc
+ filters:
+ exclude:
+ - '^docs:'
+ - '^test:'
0 commit comments