Files
ts-docker-proxy/.woodpecker.yml
David Ashby cfc62e4d01
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add build caching
2026-02-14 16:08:29 -05:00

51 lines
1.7 KiB
YAML

steps:
test:
image: golang:1.26
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- go test ./...
volumes:
- go_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod
build:
image: golang:1.26
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- go build -v .
volumes:
- go_build_cache:/root/.cache/go-build
- go_mod_cache:/go/pkg/mod
container:
image: docker
commands:
- docker login -u docker -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/ts-docker-proxy:latest .
- docker push registry.yetaga.in/ts-docker-proxy:latest
environment:
DOCKER_PASSWORD:
from_secret: docker_password
when:
branch: "main"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
deploy:
image: alpine:latest
commands:
- apk add curl jq
- 'curl -s http://100.97.157.109:4000/api/pull -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.97.157.109:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.97.157.109:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.113.98.36:4000/api/pull -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.113.98.36:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.113.98.36:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
- 'curl -s http://100.113.98.36:4000/api/reloadCaddy -H "Authorization: Bearer $COMPOSE_TOKEN" | jq .'
environment:
COMPOSE_TOKEN:
from_secret: compose_token
when:
branch: "main"