From 7c74e6443c3bd8c23625777692fff21001a3a2c4 Mon Sep 17 00:00:00 2001 From: Nulo Date: Fri, 17 Sep 2021 13:44:41 -0300 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20.woodpecker.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .woodpecker.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .woodpecker.yml 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