We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4603f5 commit c8f8fa5Copy full SHA for c8f8fa5
2 files changed
.gitignore
@@ -1,3 +1,5 @@
1
.idea
2
.claude
3
/opcodeoracle
4
+# Added by goreleaser init:
5
+dist/
.goreleaser.yaml
@@ -4,8 +4,7 @@ project_name: opcodeoracle
before:
6
hooks:
7
- - cmd: go mod tidy
8
- dir: src
+ - go mod tidy
9
10
builds:
11
- id: opcodeoracle
@@ -25,11 +24,11 @@ builds:
25
24
- arm64
26
27
archives:
28
- - format: tar.gz
+ - formats: [ 'tar.gz' ]
29
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
30
format_overrides:
31
- goos: windows
32
- format: zip
+ formats: [ 'zip' ]
33
34
checksum:
35
name_template: checksums.txt
0 commit comments