Guillaume "B.B." Van Hemmen
a487046931
This change allows the CI pipeline to be manually triggered in addition to being triggered by cron jobs and pushes. This provides more flexibility for testing and deployment workflows.
18 lines
422 B
YAML
18 lines
422 B
YAML
steps:
|
|
|
|
docker-build:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
repo: git.van-hemmen.com/guillaumehemmen/debian-node-firebase
|
|
tags: latest,debian_12-node_20
|
|
registry: git.van-hemmen.com
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
event:
|
|
- cron
|
|
- push
|
|
- manual
|
|
branch: 'master'
|