Skip to content

Commit bb1c80d

Browse files
committed
Make autodeploy work
1 parent d646c76 commit bb1c80d

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.circleci/config.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22
#
33
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
44
#
5-
version: 2
5+
version: 2.1
6+
7+
workflows:
8+
build-deploy:
9+
jobs:
10+
- build:
11+
filters:
12+
tags:
13+
only: /.*/
14+
15+
- deploy:
16+
requires:
17+
- build
18+
filters:
19+
tags:
20+
only: /Release-.*/
21+
context:
22+
- CLOJARS_DEPLOY
23+
624
jobs:
725
build:
826
docker:

0 commit comments

Comments
 (0)