kind: pipeline name: default steps: - name: fetch image: docker:git commands: - git fetch --tags - name: build image: cimg/go:1.22.6 volumes: - name: dockersock path: /var/run/docker.sock environment: GITEA_TOKEN: from_secret: gitea_token commands: - sudo chmod 666 /var/run/docker.sock - curl -sL https://git.io/goreleaser -o /tmp/goreleaser-download - chmod +x /tmp/goreleaser-download - sudo chown -R circleci:circleci . - /tmp/goreleaser-download release --clean trigger: event: - tag volumes: - name: dockersock host: path: /var/run/docker.sock