2024-02-14 19:00:32 +01:00
|
|
|
steps:
|
|
|
|
- name: publish_image
|
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
|
|
settings:
|
|
|
|
repo: git.gnous.eu/${CI_REPO_OWNER}/plakken
|
2024-05-11 03:19:02 +02:00
|
|
|
dockerfile: deployment/docker/Dockerfile
|
2024-05-01 23:01:27 +02:00
|
|
|
platforms: linux/amd64,linux/arm64/v8,linux/arm
|
2024-02-14 19:00:32 +01:00
|
|
|
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
|
|
|
|
- name: publish_image_tag
|
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
|
|
settings:
|
|
|
|
repo: git.gnous.eu/${CI_REPO_OWNER}/plakken
|
2024-05-11 03:19:02 +02:00
|
|
|
dockerfile: deployment/docker/Dockerfile
|
2024-05-01 23:01:27 +02:00
|
|
|
platforms: linux/amd64,linux/arm64/v8,linux/arm
|
2024-02-14 19:00:32 +01:00
|
|
|
registry: https://git.gnous.eu
|
|
|
|
tags:
|
|
|
|
- ${CI_COMMIT_TAG##v} # Remove v from tag
|
|
|
|
- stable
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
when:
|
|
|
|
event: tag
|