terraform-provider-gitea/.drone.yml
lerentis 0185ca1964
Some checks failed
continuous-integration/drone/push Build is failing
Update '.drone.yml'
2022-06-06 20:51:57 +00:00

44 lines
785 B
YAML

---
kind: pipeline
type: kubernetes
name: terraform-provider-gitea
platform:
os: linux
arch: amd64
steps:
- name: fetch
image: docker:git
commands:
- git fetch --tags
when:
event:
- push
- pull_request
- tag
- name: build
image: goreleaser/goreleaser
commands:
- goreleaser build
when:
event:
- push
- pull_request
- name: test
image: golang:1.18.3-alpine3.16
commands:
- "apk add --update --no-cache make build-base"
- "make test"
when:
event:
- push
- pull_request
- name: release
image: goreleaser/goreleaser
environment:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- goreleaser release
when:
event: tag