1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-09-16 09:26:52 +02:00

docs: Correct CircleCI Example. (#751)

This commit is contained in:
Tynan
2018-08-09 22:08:28 +10:00
committed by Carlos Alexandro Becker
parent f0413af071
commit 38e5d3239e

View File

@@ -63,6 +63,7 @@ Here is how to do it with [CircleCI 2.0](https://circleci.com):
```yml ```yml
# .circleci/config.yml # .circleci/config.yml
version: 2
jobs: jobs:
release: release:
docker: docker:
@@ -75,11 +76,11 @@ workflows:
release: release:
jobs: jobs:
- release: - release:
filters: filters:
branches: branches:
ignore: /.*/ ignore: /.*/
tags: tags:
only: /v[0-9]+(\.[0-9]+)*(-.*)*/ only: /v[0-9]+(\.[0-9]+)*(-.*)*/
``` ```
For CircleCI 1.0: For CircleCI 1.0: