github.com/goreleaser/goreleaser@v1.25.1/www/docs/ci/circle.md (about)

     1  # CircleCI
     2  
     3  Here is how to do it with [CircleCI](https://circleci.com):
     4  
     5  ```yaml
     6  # .circleci/config.yml
     7  version: 2.1
     8  workflows:
     9    main:
    10      jobs:
    11        - release:
    12            # Only run this job on git tag pushes
    13            filters:
    14              branches:
    15                ignore: /.*/
    16              tags:
    17                only: /v[0-9]+(\.[0-9]+)*(-.*)*/
    18  jobs:
    19    release:
    20      docker:
    21        - image: cimg/go:1.20
    22      steps:
    23        - checkout
    24        - run: curl -sfL https://goreleaser.com/static/run | bash
    25  ```