39 lines
1,012 B
YAML
39 lines
1,012 B
YAML
|
steps:
|
||
|
build:
|
||
|
image: woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
dry-run: true
|
||
|
repo: git.merp.digital/${CI_REPO_OWNER}/${CI_REPO_NAME}
|
||
|
platforms: linux/amd64
|
||
|
registry: git.merp.digital
|
||
|
when:
|
||
|
- event: push
|
||
|
branch:
|
||
|
exclude: [develop, master]
|
||
|
|
||
|
publish-nightly:
|
||
|
image: woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
repo: git.merp.digital/${CI_REPO_OWNER}/${CI_REPO_NAME}
|
||
|
platforms: linux/amd64
|
||
|
registry: git.merp.digital
|
||
|
tags: develop
|
||
|
username: ${CI_REPO_OWNER}
|
||
|
password:
|
||
|
from_secret: cb_token
|
||
|
when:
|
||
|
- event: push
|
||
|
branch: develop
|
||
|
|
||
|
publish-release:
|
||
|
image: woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
repo: git.merp.digital/${CI_REPO_OWNER}/${CI_REPO_NAME}
|
||
|
platforms: linux/amd64
|
||
|
registry: git.merp.digital
|
||
|
tags: ["latest", "${CI_COMMIT_TAG}"]
|
||
|
username: ${CI_REPO_OWNER}
|
||
|
password:
|
||
|
from_secret: cb_token
|
||
|
when:
|
||
|
- event: tag
|