docker-pnpm/.drone.yml

72 lines
1.2 KiB
YAML
Raw Normal View History

2024-07-22 14:01:42 +02:00
---
kind: pipeline
type: docker
name: build
trigger:
event:
- push
branch:
2024-07-22 14:03:33 +02:00
- main
steps:
- name: build-lts
image: plugins/docker
settings:
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- lts-alpine
- lts
- name: build-latest
image: plugins/docker
settings:
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- latest-alpine
- latest
---
kind: pipeline
type: docker
name: cron
trigger:
event:
- cron
2024-07-22 14:01:42 +02:00
cron:
2024-07-22 14:03:33 +02:00
- daily
2024-07-22 14:01:42 +02:00
steps:
- name: build-lts
image: plugins/docker
settings:
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- lts-alpine
- lts
- name: build-latest
image: plugins/docker
settings:
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- latest-alpine
- latest
2024-07-22 14:03:33 +02:00
2024-07-22 14:01:42 +02:00
---
kind: signature
2024-07-22 14:03:33 +02:00
hmac: ca96c5b12444e50535a1817f718a53211b80d66deca3ded0a909066f54562054
2024-07-22 14:01:42 +02:00
...