library/.woodpecker.yml
David Ashby 98f4c4b0c1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add compose_token to secrets list
2022-04-20 20:54:01 -04:00

29 lines
861 B
YAML

pipeline:
test:
image: golang:1.17
commands:
- go test ./...
build:
image: docker
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- apk add curl
- sleep 5 # wait for docker service to come up
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD registry.yetaga.in
- docker build -t registry.yetaga.in/library:latest .
- docker push registry.yetaga.in/library:latest
- 'curl http://172.17.0.1:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
- 'curl http://172.17.0.1:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN"'
secrets: [docker_username, docker_password, compose_token]
when:
branch: "master"
services:
docker:
image: docker:18.09-dind
command: ["--storage-driver=vfs"]
privileged: true
when:
branch: master