Update deployment

This commit is contained in:
Keannu Christian Bernasol 2024-10-17 17:48:32 +08:00
parent 2770ac035d
commit aa9d67fdba
5 changed files with 59 additions and 40 deletions

22
.woodpecker/.build.yml Normal file
View file

@ -0,0 +1,22 @@
labels:
platform: linux/arm64
steps:
- name: build
image: docker
when:
- branch: master
event: push
commands:
- docker build -t "$REGISTRY_IMAGE_TAG" .
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
- docker push "$REGISTRY_IMAGE_TAG"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
secrets:
[
FORGEJO_REGISTRY_URL,
FORGEJO_REGISTRY_USERNAME,
FORGEJO_REGISTRY_PASSWORD,
REGISTRY_IMAGE_TAG,
]