From 47885845a3f0ecc34d586d5780a45710a6882ae7 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Sat, 18 Mar 2023 11:41:13 -0400 Subject: [PATCH] Added woodpecker CI config --- .woodpecker.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..8c44f3c --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,23 @@ +pipeline: + setup: + image: ruby:3.0 + commands: + - 'bundle install rake' + - 'bundle config set --local path "vendor/bundle"' + - 'bundle install' + + style: + image: ruby:3.0 + commands: + - 'rake test:rubocop' + + gitea_release: + image: plugins/gitea-release + settings: + api_key: + from_secret: gitea_api_key + base_url: https://git.metaunix.net + title: "${CI_COMMIT_TAG}" + when: + event: tag +