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 d67d292 commit 99537b0Copy full SHA for 99537b0
.github/workflows/release.yaml
@@ -25,6 +25,6 @@ jobs:
25
uses: goreleaser/goreleaser-action@v6
26
with:
27
version: latest
28
- args: release --rm-dist
+ args: release --clean
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.gitignore
@@ -5,3 +5,5 @@ data/*.yaml
5
!.github/workflows/*.yaml
6
helm/easeprobe/charts/
7
vendor/
8
+
9
+dist/
.goreleaser.yaml
@@ -1,3 +1,5 @@
1
+version: 2
2
3
before:
4
hooks:
# You may remove this if you don't use go modules.
@@ -6,11 +8,9 @@ before:
- go generate ./...
10
snapshot:
- name_template: '{{ .Tag }}'
11
+ version_template: '{{ .Tag }}'
12
checksum:
13
name_template: 'checksums.txt'
-changelog:
- skip: true
14
15
builds:
16
- id: build
0 commit comments