moneyforward/.drone.yml

36 lines
652 B
YAML
Raw Permalink Normal View History

2024-08-11 05:16:21 +00:00
kind: pipeline
name: default
steps:
- name: fetch
image: docker:git
commands:
- git fetch --tags
- name: build
image: cimg/go
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 --rm-dist
trigger:
event:
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock