15 lines
252 B
YAML
15 lines
252 B
YAML
|
steps:
|
||
|
build:
|
||
|
image: golang:1.21
|
||
|
commands:
|
||
|
- go mod tidy
|
||
|
- go build -o gospt-ng
|
||
|
|
||
|
publish:
|
||
|
image: goreleaser/goreleaser
|
||
|
commands:
|
||
|
- goreleaser release --clean
|
||
|
secrets: [ gitea_token ]
|
||
|
when:
|
||
|
event: tag
|