2024-02-18 16:53:32 +00:00
|
|
|
steps:
|
|
|
|
build:
|
2024-02-18 16:54:38 +00:00
|
|
|
image: golang:1.22
|
2024-02-18 16:53:32 +00:00
|
|
|
commands:
|
|
|
|
- go mod tidy
|
|
|
|
- go build -o gospt-ng
|
|
|
|
|
|
|
|
publish:
|
2024-02-18 17:01:51 +00:00
|
|
|
image: goreleaser/goreleaser:nightly
|
2024-02-18 16:53:32 +00:00
|
|
|
commands:
|
|
|
|
- goreleaser release --clean
|
|
|
|
secrets: [ gitea_token ]
|
|
|
|
when:
|
|
|
|
event: tag
|