Merge pull request 'Fix: Create and host docker images for the CI (#34)' (#45) from fix/ci-docker-build into master
Reviewed-on: #45
This commit is contained in:
commit
740afce61b
|
@ -1,7 +1,6 @@
|
|||
variables:
|
||||
- &buildx woodpeckerci/plugin-docker-buildx:2.0.0
|
||||
- &platforms linux/amd64
|
||||
- &dockerfile_path .woodpecker/docker/
|
||||
- &when_path .woodpecker/docker-build.yml
|
||||
|
||||
matrix:
|
||||
|
@ -14,22 +13,22 @@ pipeline:
|
|||
dryrun:
|
||||
image: *buildx
|
||||
settings:
|
||||
dockerfile: ${dockerfile_path}${DOCKERFILE}
|
||||
dockerfile: .woodpecker/docker/${DOCKERFILE}
|
||||
platforms: *platforms
|
||||
dry_run: true
|
||||
when:
|
||||
event: pull_request
|
||||
path:
|
||||
- *when_path
|
||||
- ${dockerfile_path}${DOCKERFILE}
|
||||
- .woodpecker/docker/${DOCKERFILE}
|
||||
|
||||
publish:
|
||||
image: *buildx
|
||||
settings:
|
||||
dockerfile: ${dockerfile_path}${DOCKERFILE}
|
||||
dockerfile: .woodpecker/docker/${DOCKERFILE}
|
||||
platforms: *platforms
|
||||
registry: gitea.aireone.xyz
|
||||
repo: gitea.aireone.xyz/${CI_REPO,,}/${DOCKERFILE}
|
||||
repo: gitea.aireone.xyz/${CI_REPO,,}/${DOCKERFILE/Dockerfile./}
|
||||
tag: latest
|
||||
username:
|
||||
from_secret: publish_username
|
||||
|
@ -39,6 +38,6 @@ pipeline:
|
|||
event: push
|
||||
path:
|
||||
- *when_path
|
||||
- ${dockerfile_path}${DOCKERFILE}
|
||||
- .woodpecker/docker/${DOCKERFILE}
|
||||
|
||||
branches: master
|
||||
|
|
Loading…
Reference in New Issue