feat: ci/cd

This commit is contained in:
2025-03-28 16:13:20 +01:00
parent 45696fd0a9
commit 25c1abf604

11
.woodpecker/build.yml Normal file
View File

@@ -0,0 +1,11 @@
when:
- event: push
branch: main
steps:
- name: build
image: debian
commands:
- docker build -t adix7/healthr-go:latest -f Containerfile .
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- docker push adix7/healthr-go:latest