drone-netlify/.drone.yml

78 lines
1.1 KiB
YAML
Raw Normal View History

2020-01-15 02:39:12 +00:00
---
kind: pipeline
name: linux-amd64
platform:
os: linux
arch: amd64
steps:
- name: dryrun
pull: always
image: plugins/docker:linux-amd64
settings:
dry_run: true
password:
from_secret: docker_password
2022-10-20 21:58:05 +00:00
repo: internetmat/drone-netlify
2020-01-15 02:39:12 +00:00
tags: linux-amd64
username:
from_secret: docker_username
when:
event:
- pull_request
- name: publish
pull: always
image: plugins/docker:linux-amd64
settings:
2018-02-15 20:08:23 +00:00
auto_tag: true
2020-01-15 02:39:12 +00:00
auto_tag_suffix: linux-amd64
password:
from_secret: docker_password
2022-10-20 21:58:05 +00:00
repo: internetmat/drone-netlify
2020-01-15 02:39:12 +00:00
username:
from_secret: docker_username
when:
event:
- push
- tag
trigger:
branch:
- master
2021-06-03 23:32:22 +00:00
- main
2020-01-15 02:39:12 +00:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: manifest
pull: always
2022-10-20 22:05:25 +00:00
image: plugins/manifest:latest
2020-01-15 02:39:12 +00:00
settings:
ignore_missing: true
password:
from_secret: docker_password
spec: manifest.tmpl
username:
from_secret: docker_username
trigger:
branch:
- master
2021-06-03 23:32:22 +00:00
- main
2020-01-15 02:39:12 +00:00
event:
- push
- tag
depends_on:
- linux-amd64
...