Files
library/.woodpecker.yml
David a679d229f8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update .woodpecker.yml
2026-02-14 20:44:43 +00:00

29 lines
908 B
YAML

steps:
test:
image: golang:1.26
commands:
- go test ./...
volumes:
- go_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod
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_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod