From 6975c3faa1f3a8750902d5a9b86361ec9a9ffb9f Mon Sep 17 00:00:00 2001 From: realaravinth Date: Thu, 18 Aug 2022 14:28:10 +0530 Subject: [PATCH] feat: publish docker img from CI --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..e77b27a --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +pipeline: + build-test: + image: go + commands: + - go build + - go test + + publish: + image: plugins/docker + settings: + username: realaravinth + password: + from_secret: DOCKER_TOKEN + repo: realaravinth/rageshake + tags: latest