File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,12 @@ jobs:
1616 - name : Set up Go
1717 uses : actions/setup-go@v5
1818 with :
19- go-version : 1.22 .0
19+ go-version : 1.24 .0
2020
2121 - name : Build
22- run : go build -v ./...
22+ run : |
23+ go mod tidy
24+ go build -v ./...
2325
2426 - name : Test
2527 run : go test -v ./...
Original file line number Diff line number Diff line change 2525 - name : Set up Go
2626 uses : actions/setup-go@v5
2727 with :
28- go-version : 1.22 .0
28+ go-version : 1.24 .0
2929
3030 - name : Install Snapcraft
3131 uses : samuelmeuli/action-snapcraft@v3
Original file line number Diff line number Diff line change 11# This is an example goreleaser.yaml file with some sane defaults.
22# Make sure to check the documentation at http://goreleaser.com
3+ version : 2
34
45project_name : enonic
56
@@ -74,11 +75,11 @@ archives:
7475 {{- with .Arm }}_v{{ . }}{{ end }}
7576 {{- if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}
7677
77- format : tar.gz # set to binary to omit archiving
78+ formats : tar.gz # set to binary to omit archiving
7879
7980 format_overrides :
8081 - goos : windows
81- format : zip
82+ formats : zip
8283
8384 files :
8485 - LICENSE.txt
You can’t perform that action at this time.
0 commit comments