This repository has been archived on 2023-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
unifiedpush-gotify/.drone.yml
Samuel Philipp 42fca1fc41
All checks were successful
continuous-integration/drone/push Build is passing
initially added files
2021-02-23 22:57:36 +01:00

56 lines
878 B
YAML

kind: pipeline
type: docker
name: linux-amd64
platform:
os: linux
arch: amd64
steps:
- name: docker
image: plugins/docker
settings:
purge: true
no_cache: true
auto_tag: true
auto_tag_suffix: linux-amd64
repo: spcodes/unifiedpush-gotify
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
trigger:
branch:
- main
event:
- push
---
kind: pipeline
type: docker
name: manifest
steps:
- name: publish-latest
image: plugins/manifest
settings:
ignore_missing: true
target: spcodes/unifiedpush-gotify
template: spcodes/unifiedpush-gotify:OS-ARCH
platforms:
- linux/amd64
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
depends_on:
- linux-amd64
trigger:
branch:
- main
event:
- push