Compare commits

...

3 Commits

Author SHA1 Message Date
533d52bc04 Update golang Docker tag to v1.26
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-02-13 19:00:45 +00:00
e5d7ccf15a Merge pull request 'add deploy step' (#64) from deploy-step into main
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Reviewed-on: #64
2026-02-13 18:07:12 +00:00
b888a481c4 add deploy step
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-02-13 18:03:16 +00:00
2 changed files with 18 additions and 7 deletions

View File

@@ -1,23 +1,34 @@
steps:
test:
image: golang:1.25
image: golang:1.26
commands:
- go test ./...
build:
image: docker
commands:
- apk add curl
- 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
- '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: "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"

View File

@@ -1,4 +1,4 @@
FROM golang:1.25
FROM golang:1.26
WORKDIR /src
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v .