29 lines
791 B
YAML
29 lines
791 B
YAML
|
# Build and publish Docker images for multible architectures.
|
||
|
#
|
||
|
# Pushing an image to codeberg as container registry,
|
||
|
# package owner will be the repo owner.
|
||
|
#
|
||
|
# this config also shows usage of yaml aliases and
|
||
|
# was taken from https://codeberg.org/6543/docker-images/src/commit/37e29c227717c1c07d2776cddcf14725bf952875/.woodpecker/hello.yml
|
||
|
|
||
|
when:
|
||
|
branch: main
|
||
|
|
||
|
steps:
|
||
|
publish-builder:
|
||
|
image: woodpeckerci/plugin-docker-buildx
|
||
|
settings:
|
||
|
dockerfile: staticanalysis/Dockerfile
|
||
|
platforms: linux/arm64/v8,linux/amd64
|
||
|
repo: git.jmbit.de/filegate/utility-containers
|
||
|
registry: git.jmbit.de
|
||
|
tags:
|
||
|
- staticanalysis-latest
|
||
|
- staticanalysis
|
||
|
username: jmb
|
||
|
password:
|
||
|
from_secret: forgejo_token
|
||
|
when:
|
||
|
event: push
|
||
|
|