feat(ci): add woodpecker build for azure
Some checks failed
ci/woodpecker/push/build Pipeline failed
Some checks failed
ci/woodpecker/push/build Pipeline failed
This commit is contained in:
parent
9c9f1b73c1
commit
528c95649a
1 changed files with 22 additions and 0 deletions
22
.woodpecker/build.yaml
Normal file
22
.woodpecker/build.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: main
|
||||||
|
- event: cron
|
||||||
|
cron: build_image
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: quay.io/containers/buildah:v1.38.0
|
||||||
|
environment:
|
||||||
|
FEDORA_MAJOR_VERSION: latest
|
||||||
|
IMAGE_NAME: forge.babariviere.com/babariviere/azure
|
||||||
|
PACKAGE_TOKEN:
|
||||||
|
from_secret: package_token
|
||||||
|
commands:
|
||||||
|
- echo "$PACKAGE_TOKEN" | buildah login forge.babariviere.com --username babariviere --password-stdin
|
||||||
|
- buildah build --label org.opencontainers.image.source=https://$IMAGE_NAME . -t $IMAGE_NAME:latest -t $IMAGE_NAME:$(date -u +%Y%m%d)
|
||||||
|
- buildah push --all $IMAGE_NAME docker://$IMAGE_NAME
|
||||||
|
backend_options:
|
||||||
|
kubernetes:
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
Loading…
Add table
Reference in a new issue