mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
da22bf8eb8
* Update to Go 1.15 image (#1758) * feat: use go 1.15 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: remove darwin_386 Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> Co-authored-by: Simon Jürgensmeyer <sj14@users.noreply.github.com>
496 B
496 B
CircleCI
Here is how to do it with CircleCI:
# .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.15
steps:
- checkout
- run: curl -sL https://git.io/goreleaser | bash