Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 76e4a26

Browse files
author
Thomas Kosiewski
committed
Added just to the goreleaser pipeline
Signed-off-by: Thomas Kosiewski <thomas.kosiewski@loft.sh>
1 parent 7430d5c commit 76e4a26

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
cache: false
3232
go-version-file: "go.mod"
3333

34+
- name: Setup Just
35+
uses: extractions/setup-just@v1
36+
3437
- name: Setup Cosgin
3538
uses: sigstore/cosign-installer@main
3639
with:

.goreleaser.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ project_name: tunnel
22

33
before:
44
hooks:
5-
- go mod tidy
6-
- cd examples/coordinator/ && go mod tidy
5+
- just tidy
76

87
source:
98
enabled: false

Justfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,9 @@ lint *ARGS:
2121
[no-exit-message]
2222
check-structalign *ARGS:
2323
go run github.com/dkorunic/betteralign/cmd/betteralign@latest {{ARGS}} ./...
24+
25+
# --- Go tooling ---
26+
27+
tidy:
28+
go mod tidy
29+
cd examples/coordinator/ && go mod tidy

0 commit comments

Comments
 (0)