From 90520af7a5f81094b24b8251bc0ea9540dc390d5 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sat, 21 Oct 2023 14:38:09 +0530 Subject: [PATCH] feat: CI: enable CI --- .woodpecker.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..060d2fb --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,20 @@ +pipeline: + build_docker_img: + image: plugins/docker + when: + event: [pull_request] + settings: + dry_run: true + repo: realaravinth/nvm-node16-insecure + tags: latest + + build_and_publish_docker_img: + image: plugins/docker + when: + event: [push, tag, deployment] + settings: + username: realaravinth + password: + from_secret: DOCKER_TOKEN + repo: realaravinth/nvm-node16-insecure + tags: latest