moneyforward/.drone.yml

34 lines
566 B
YAML
Raw 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
2024-08-11 05:41:44 +00:00
image: cimg/go:1.22.6
2024-08-11 05:16:21 +00:00
volumes:
- name: dockersock
path: /var/run/docker.sock
environment:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- sudo chmod 666 /var/run/docker.sock
- sudo chown -R circleci:circleci .
2024-08-11 09:50:11 +00:00
- curl -sfL https://goreleaser.com/static/run | bash -s -- check
2024-08-11 05:16:21 +00:00
trigger:
event:
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock