19 lines
353 B
YAML
19 lines
353 B
YAML
when:
|
|
- event: tag
|
|
|
|
steps:
|
|
build:
|
|
image: golang:1.26-alpine3.23
|
|
commands:
|
|
- go mod download
|
|
- ci/build.sh
|
|
|
|
publish:
|
|
image: alpine:3.23
|
|
commands:
|
|
- apk add --no-cache nodejs
|
|
- node ci/release.js .build/qbittorrent-sentinel
|
|
environment:
|
|
GITEA_RELEASE_TOKEN:
|
|
from_secret: gitea_release_token
|