Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
fix circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
ciphax committed Mar 2, 2019
1 parent 1dda90d commit 7b94754
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.1
version: 2
jobs:
build:
docker:
Expand Down Expand Up @@ -61,28 +61,38 @@ jobs:
steps:
- checkout
- run:
name: "Publish crate to crates.io"
command: |
cargo login ${CRATES_IO_TOKEN}
cargo publish
name: "Publish crate to crates.io"
command: |
cargo login ${CRATES_IO_TOKEN}
cargo publish
workflows:
version: 2
main:
jobs:
- build
- build:
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- publish-docker-image:
requires:
- build
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
branches:
ignore: /.*/
- publish-github-release:
requires:
- build
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
branches:
ignore: /.*/
- publish-crate:
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
branches:
ignore: /.*/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# letsencrypt-inwx [![Docker Pulls](https://img.shields.io/docker/pulls/kegato/letsencrypt-inwx.svg)](https://hub.docker.com/r/kegato/letsencrypt-inwx/) [![Crates.io](https://img.shields.io/crates/v/letsencrypt-inwx.svg)](https://crates.io/crates/letsencrypt-inwx)
# letsencrypt-inwx [![CircleCI](https://circleci.com/gh/kegato/letsencrypt-inwx.svg?style=svg)](https://circleci.com/gh/kegato/letsencrypt-inwx) [![Docker Pulls](https://img.shields.io/docker/pulls/kegato/letsencrypt-inwx.svg)](https://hub.docker.com/r/kegato/letsencrypt-inwx/) [![Crates.io](https://img.shields.io/crates/v/letsencrypt-inwx.svg)](https://crates.io/crates/letsencrypt-inwx)

A small cli utility for automating the letsencrypt dns-01 challenge for domains hosted by inwx. This allows you to obtain wildcard certificates from letsencrypt.

Expand Down

0 comments on commit 7b94754

Please sign in to comment.