Add Woodpecker workflow
This commit is contained in:
parent
f1538da3a1
commit
0068fa1166
1 changed files with 35 additions and 0 deletions
35
.woodpecker/docker-buildx.yml
Normal file
35
.woodpecker/docker-buildx.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
when:
|
||||
branch: main
|
||||
event: [push, pull_request]
|
||||
|
||||
variables:
|
||||
- &file Dockerfile
|
||||
- &repo scm.gruezi.net/${CI_REPO}
|
||||
|
||||
steps:
|
||||
dryrun:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
dockerfile: *file
|
||||
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
|
||||
dry_run: true
|
||||
repo: *repo
|
||||
tags: latest
|
||||
when:
|
||||
event: pull_request
|
||||
path: *file
|
||||
|
||||
publish:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
dockerfile: *file
|
||||
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
|
||||
repo: *repo
|
||||
registry: scm.gruezi.net
|
||||
tags: latest
|
||||
username: ${CI_REPO_OWNER}
|
||||
password:
|
||||
from_secret: forgejo_token
|
||||
when:
|
||||
event: push
|
||||
path: *file
|
Loading…
Add table
Reference in a new issue