From bb1c80de86369b12bc2a8487a9fb8dab7a21aa2d Mon Sep 17 00:00:00 2001 From: Erik Assum Date: Wed, 8 Jan 2025 19:51:21 +0100 Subject: [PATCH] Make autodeploy work --- .circleci/config.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7894e1c..f39cf8c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,25 @@ # # Check https://circleci.com/docs/2.0/language-clojure/ for more details # -version: 2 +version: 2.1 + +workflows: + build-deploy: + jobs: + - build: + filters: + tags: + only: /.*/ + + - deploy: + requires: + - build + filters: + tags: + only: /Release-.*/ + context: + - CLOJARS_DEPLOY + jobs: build: docker: