21 lines
423 B
YAML
21 lines
423 B
YAML
when:
|
|
- event: tag
|
|
|
|
steps:
|
|
test:
|
|
image: golang:1.24
|
|
commands:
|
|
- go test ./...
|
|
release:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
platforms: linux/arm64/v8,linux/amd64
|
|
repo: lerentis/woodpecker-autoscaler
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_TAG}
|
|
password:
|
|
from_secret: docker_hub_password
|
|
username:
|
|
from_secret: docker_hub_username
|