mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-09 13:36:56 +02:00
3c4e797150
* feat: upgrade to go 1.18 * chore: go mod tidy Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * test: fix * fix: more updates * test: fix test
488 B
488 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: cimg/go:1.18
steps:
- checkout
- run: curl -sL https://git.io/goreleaser | bash