docker-pnpm/.drone.yml
Lukas | AstroGD a91b4a12f6
Some checks failed
continuous-integration/drone/push Build is failing
fix: Remove argument
2025-02-24 00:09:18 +01:00

152 lines
3.7 KiB
YAML

---
kind: pipeline
type: docker
name: build
trigger:
event:
- push
branch:
- main
steps:
- name: build-lts
image: plugins/docker:20.18.6
settings:
context: --provenance=true --sbom=true
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- lts-alpine
- lts
dockerfile: lts/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-lts-astrogd
image: plugins/docker:20.18.6
settings:
registry: registry.astrogd.cloud
context: --provenance=true --sbom=true
username:
from_secret: astrogd_registry_username
password:
from_secret: astrogd_registry_key
repo: registry.astrogd.cloud/pnpm
tags:
- lts-alpine
- lts
dockerfile: lts/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-latest
image: plugins/docker:20.18.6
settings:
context: --provenance=true --sbom=true
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- latest-alpine
- latest
dockerfile: latest/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-latest-astrogd
image: plugins/docker:20.18.6
settings:
registry: registry.astrogd.cloud
context: --provenance=true --sbom=true
username:
from_secret: astrogd_registry_username
password:
from_secret: astrogd_registry_key
repo: registry.astrogd.cloud/pnpm
tags:
- latest-alpine
- latest
dockerfile: latest/Dockerfile
auto_label: true
custom_labels: automated.build=true
---
kind: pipeline
type: docker
name: cron
trigger:
event:
- cron
cron:
- daily
steps:
- name: build-lts
image: plugins/docker:20.18.6
settings:
context: --provenance=true --sbom=true
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- lts-alpine
- lts
dockerfile: lts/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-lts-astrogd
image: plugins/docker:20.18.6
settings:
registry: registry.astrogd.cloud
context: --provenance=true --sbom=true
username:
from_secret: astrogd_registry_username
password:
from_secret: astrogd_registry_key
repo: registry.astrogd.cloud/pnpm
tags:
- lts-alpine
- lts
dockerfile: lts/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-latest
image: plugins/docker:20.18.6
settings:
context: --provenance=true --sbom=true
username:
from_secret: registry_username
password:
from_secret: registry_key
repo: astrogd/pnpm
tags:
- latest-alpine
- latest
dockerfile: latest/Dockerfile
auto_label: true
custom_labels: automated.build=true
- name: build-latest-astrogd
image: plugins/docker:20.18.6
settings:
registry: registry.astrogd.cloud
context: --provenance=true --sbom=true
username:
from_secret: astrogd_registry_username
password:
from_secret: astrogd_registry_key
repo: registry.astrogd.cloud/pnpm
tags:
- latest-alpine
- latest
dockerfile: latest/Dockerfile
auto_label: true
custom_labels: automated.build=true
---
kind: signature
hmac: 7907b22225e12f6479406cbb980c5351b5ee6018941b2bb9d7a0f74c6bce2b56
...