mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-01 13:07:49 +02:00
dd5ccf7170
* feat: use go 1.17 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: go mod tidy Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * test: fix failing test Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * ci: increase lint timeout Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * ci: increase lint timeout Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
26 lines
496 B
Markdown
26 lines
496 B
Markdown
# CircleCI
|
|
|
|
Here is how to do it with [CircleCI](https://circleci.com):
|
|
|
|
```yaml
|
|
# .circleci/config.yml
|
|
version: 2.1
|
|
workflows:
|
|
main:
|
|
jobs:
|
|
- release:
|
|
# Only run this job on git tag pushes
|
|
filters:
|
|
branches:
|
|
ignore: /.*/
|
|
tags:
|
|
only: /v[0-9]+(\.[0-9]+)*(-.*)*/
|
|
jobs:
|
|
release:
|
|
docker:
|
|
- image: circleci/golang:1.17
|
|
steps:
|
|
- checkout
|
|
- run: curl -sL https://git.io/goreleaser | bash
|
|
```
|