mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-01 02:20:39 +00:00
cbddcedb62
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
74 lines
1.6 KiB
YAML
74 lines
1.6 KiB
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker.io/library/python:3.12
|
|
commands:
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
- poetry build
|
|
|
|
- name: dryrun
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
|
settings:
|
|
containerfile: Containerfile.multiarch
|
|
dry_run: true
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
provenance: false
|
|
repo: ${CI_REPO}
|
|
when:
|
|
- event: [pull_request]
|
|
|
|
- name: publish-dockerhub
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
|
group: container
|
|
settings:
|
|
auto_tag: true
|
|
containerfile: Containerfile.multiarch
|
|
password:
|
|
from_secret: docker_password
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
provenance: false
|
|
repo: ${CI_REPO}
|
|
username:
|
|
from_secret: docker_username
|
|
when:
|
|
- event: [tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
- name: publish-quay
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
|
group: container
|
|
settings:
|
|
auto_tag: true
|
|
containerfile: Containerfile.multiarch
|
|
password:
|
|
from_secret: quay_password
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
provenance: false
|
|
registry: quay.io
|
|
repo: quay.io/${CI_REPO}
|
|
username:
|
|
from_secret: quay_username
|
|
when:
|
|
- event: [tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
depends_on:
|
|
- lint
|
|
- test
|