Author:
Hash:
Timestamp:
+10 -2 +/-1 browse
Kevin Schoon [me@kevinschoon.com]
d0dfd74d65a8934ef88195bf769b4e56d5161373
Sun, 25 May 2025 16:22:38 +0000 (5 months ago)
| 1 | diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml |
| 2 | index 9fdf572..5d49d50 100644 |
| 3 | --- a/.woodpecker/build.yaml |
| 4 | +++ b/.woodpecker/build.yaml |
| 5 | @@ -27,9 +27,17 @@ steps: |
| 6 | image: /bin/sh |
| 7 | environment: |
| 8 | AYLLU_REGISTRY: registry.dns.podman:5000 |
| 9 | - AYLLU_SKIP_REGISTRY_LOGIN: "true" |
| 10 | commands: |
| 11 | - scripts/build_container.sh containers/ayllu |
| 12 | - - scripts/push_container.sh containers/ayllu |
| 13 | - scripts/build_container.sh containers/multiuser |
| 14 | + - name: push-container |
| 15 | + when: |
| 16 | + - event: [manual, push] |
| 17 | + branch: main |
| 18 | + image: /bin/sh |
| 19 | + environment: |
| 20 | + AYLLU_REGISTRY: registry.dns.podman:5000 |
| 21 | + AYLLU_SKIP_REGISTRY_LOGIN: "true" |
| 22 | + commands: |
| 23 | + - scripts/push_container.sh containers/ayllu |
| 24 | - scripts/push_container.sh containers/multiuser |