2024-02-17 22:02:11 +01:00
|
|
|
steps:
|
|
|
|
- name: publish_image
|
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
|
|
settings:
|
|
|
|
repo: git.gnous.eu/${CI_REPO_OWNER}/wiki
|
2024-04-01 23:50:43 +02:00
|
|
|
dockerfile: Dockerfile
|
2024-02-17 22:02:11 +01:00
|
|
|
platforms: linux/amd64
|
|
|
|
registry: https://git.gnous.eu
|
|
|
|
tag: ${CI_COMMIT}
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
when:
|
|
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
event: push
|
2024-04-01 23:50:43 +02:00
|
|
|
|