2023-11-08 08:04:01 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
2024-01-16 15:26:59 +00:00
|
|
|
- name: security-build
|
2024-03-28 11:43:09 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
2023-11-08 08:04:01 +00:00
|
|
|
settings:
|
|
|
|
containerfile: Containerfile
|
|
|
|
output: type=oci,dest=oci/${CI_REPO_NAME},tar=false
|
|
|
|
repo: thegeeklab/${CI_REPO_NAME}
|
2024-02-12 14:21:14 +00:00
|
|
|
cache_to: type=local,dest=oci/cache/${CI_REPO_NAME},mode=max
|
2023-11-08 08:04:01 +00:00
|
|
|
|
2024-01-16 15:26:59 +00:00
|
|
|
- name: security-scan
|
2023-11-08 08:04:01 +00:00
|
|
|
image: ghcr.io/aquasecurity/trivy
|
|
|
|
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
|
|
|
|
|
2024-01-16 15:30:50 +00:00
|
|
|
- name: publish-dockerhub
|
2024-03-28 11:43:09 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
2024-01-16 15:30:50 +00:00
|
|
|
group: container
|
2023-11-08 08:04:01 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
containerfile: Containerfile
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
provenance: false
|
|
|
|
repo: thegeeklab/${CI_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2024-02-12 13:20:54 +00:00
|
|
|
cache_from:
|
2024-02-12 14:17:41 +00:00
|
|
|
- 'type=local\\,src=oci/cache/${CI_REPO_NAME}'
|
2023-11-08 08:04:01 +00:00
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
2024-01-16 15:30:50 +00:00
|
|
|
- name: publish-quay
|
2024-03-28 11:43:09 +00:00
|
|
|
image: quay.io/thegeeklab/wp-docker-buildx:4
|
2024-01-16 15:30:50 +00:00
|
|
|
group: container
|
2023-11-08 08:04:01 +00:00
|
|
|
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
|
2024-02-12 14:35:07 +00:00
|
|
|
cache_from:
|
|
|
|
- 'type=local\\,src=oci/cache/${CI_REPO_NAME}'
|
2023-11-08 08:04:01 +00:00
|
|
|
when:
|
|
|
|
- event: [tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|