seattlecitylight-mastodon-bot/.woodpecker/docker-buildx.yml

34 lines
735 B
YAML
Raw Permalink Normal View History

2025-01-11 10:28:17 -08:00
when:
branch: main
event: [push, pull_request]
variables:
- &file Dockerfile
- &repo scm.gruezi.net/${CI_REPO}
steps:
dryrun:
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: *file
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
dry_run: true
repo: *repo
tags: latest
when:
event: pull_request
publish:
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: *file
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
repo: *repo
registry: scm.gruezi.net
tags: latest
username: ${CI_REPO_OWNER}
password:
2025-01-11 10:30:53 -08:00
from_secret: FORGEJO_API_TOKEN
2025-01-11 10:28:17 -08:00
when:
event: push