diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..4ae93a3 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,17 @@ +pipeline: + deploy: + image: buildah/buildah + commands: + - podman version + - buildah version + - whoami + - podman login -u sutty -p $${REGISTRY_PASSWORD} registry.nulo.in/sutty/haini.sh + - podman build -t latest . + - podman images + - podman push registry.nulo.in/sutty/haini.sh:latest + - podman logout registry.nulo.in + secrets: + - registry_password + when: + event: push + branch: container-ci