We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65f81a commit 2e12ea3Copy full SHA for 2e12ea3
.circleci/config.yml
@@ -55,6 +55,13 @@ jobs:
55
paths:
56
- _build
57
- deps
58
+ publish:
59
+ docker:
60
+ - image: hexpm/elixir:latest
61
+ steps:
62
+ - checkout
63
+ - run: mix deps.get
64
+ - run: mix hex.publish --yes
65
66
workflows:
67
checks:
@@ -64,3 +71,11 @@ workflows:
71
matrix:
72
parameters:
73
tag: *tags
74
+ - publish:
75
+ requires:
76
+ - build-test
77
+ filters:
78
+ tags:
79
+ only: /^v\d+\.\d+\.\d+$/ # Only version tags
80
+ branches:
81
+ ignore: /.*/
0 commit comments