Andreas Mieke
397f800372
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
steps:
|
|
build:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
dry-run: true
|
|
repo: git.merp.digital/${CI_REPO_OWNER}/borgserver
|
|
platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
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}/borgserver
|
|
platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
registry: git.merp.digital
|
|
tags: develop-${CI_COMMIT_SHA}
|
|
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}/borgserver
|
|
platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8
|
|
registry: git.merp.digital
|
|
tags: ${CI_COMMIT_TAG}
|
|
username: ${CI_REPO_OWNER}
|
|
password:
|
|
from_secret: cb_token
|
|
when:
|
|
- event: tag |