Compare commits
6 Commits
e979173b16
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f0a241702 | |||
| de68bb930e | |||
| 5fdb21326e | |||
| 9cd6a60bf0 | |||
| 4fe2b28460 | |||
| 30368e81b2 |
@@ -3,12 +3,16 @@ steps:
|
|||||||
image: docker
|
image: docker
|
||||||
commands:
|
commands:
|
||||||
- apk add curl
|
- apk add curl
|
||||||
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD registry.yetaga.in
|
- docker login -u docker -p $DOCKER_PASSWORD registry.yetaga.in
|
||||||
- docker build -t registry.yetaga.in/castor:latest .
|
- docker build -t registry.yetaga.in/castor:latest .
|
||||||
- docker push registry.yetaga.in/castor:latest
|
- docker push registry.yetaga.in/castor:latest
|
||||||
- 'curl http://172.17.0.1:4000/api/fetch -H "Authorization: Bearer $COMPOSE_TOKEN"'
|
- '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"'
|
- 'curl http://172.17.0.1:4000/api/update -H "Authorization: Bearer $COMPOSE_TOKEN"'
|
||||||
secrets: [docker_username, docker_password, compose_token]
|
environment:
|
||||||
|
DOCKER_PASSWORD:
|
||||||
|
from_secret: docker_password
|
||||||
|
COMPOSE_TOKEN:
|
||||||
|
from_secret: compose_token
|
||||||
when:
|
when:
|
||||||
branch: "master"
|
branch: "master"
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.22 as builder
|
FROM golang:1.25 as builder
|
||||||
COPY . /castor
|
COPY . /castor
|
||||||
RUN cd /castor && CGO_ENABLED=0 go build
|
RUN cd /castor && CGO_ENABLED=0 go build
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user