Robert Kaussow
b53e50186b
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
ci/woodpecker/tag/build-package Pipeline was successful
ci/woodpecker/tag/build-container Pipeline was successful
ci/woodpecker/tag/docs Pipeline was successful
ci/woodpecker/tag/notify Pipeline was successful
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: security-build
|
|
image: quay.io/thegeeklab/wp-docker-buildx:5
|
|
settings:
|
|
containerfile: Containerfile
|
|
output: type=oci,dest=oci/${CI_REPO_NAME},tar=false
|
|
repo: thegeeklab/${CI_REPO_NAME}
|
|
|
|
- name: security-scan
|
|
image: docker.io/aquasec/trivy
|
|
depends_on: security-build
|
|
commands:
|
|
- trivy -v
|
|
- trivy image --input oci/${CI_REPO_NAME}
|
|
environment:
|
|
TRIVY_EXIT_CODE: "1"
|
|
TRIVY_IGNORE_UNFIXED: "true"
|
|
TRIVY_NO_PROGRESS: "true"
|
|
TRIVY_SEVERITY: HIGH,CRITICAL
|
|
TRIVY_TIMEOUT: 1m
|
|
TRIVY_DB_REPOSITORY: docker.io/aquasec/trivy-db:2
|
|
|
|
- name: publish-dockerhub
|
|
image: quay.io/thegeeklab/wp-docker-buildx:5
|
|
depends_on: security-scan
|
|
settings:
|
|
auto_tag: true
|
|
containerfile: Containerfile
|
|
password:
|
|
from_secret: docker_password
|
|
provenance: false
|
|
repo: thegeeklab/${CI_REPO_NAME}
|
|
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:5
|
|
depends_on: security-scan
|
|
settings:
|
|
auto_tag: true
|
|
containerfile: Containerfile
|
|
password:
|
|
from_secret: quay_password
|
|
provenance: false
|
|
registry: quay.io
|
|
repo: quay.io/thegeeklab/${CI_REPO_NAME}
|
|
username:
|
|
from_secret: quay_username
|
|
when:
|
|
- event: [tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|