Files
library/.woodpecker.yml
David 89b715ec9a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
use a build cache
2026-02-14 05:40:18 +00:00

27 lines
830 B
YAML

steps:
test:
image: golang:1.26
commands:
- go test ./...
volumes:
- go_cache:/root/.cache/go-build
build:
image: docker
commands:
- apk add curl
- docker login -u docker -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/library:latest .
- docker push registry.yetaga.in/library:latest
- 'curl http://100.113.98.36:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
- 'curl http://100.113.98.36:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN"'
environment:
DOCKER_PASSWORD:
from_secret: docker_password
COMPOSE_TOKEN:
from_secret: compose_token
when:
branch: "master"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- go_cache:/root/.cache/go-build