chore(ci): add dev docker builds
ci/woodpecker/push/docker Pipeline was successful Details

lsm
Jef Roosens 2023-07-21 11:42:33 +02:00
parent 1a8022ab34
commit 101172aed6
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,25 @@
platform: 'linux/amd64'
branches: 'main'
pipeline:
docker:
image: 'plugins/docker'
settings:
registry: 'git.rustybever.be'
repo: 'git.rustybever.be/chewing_bever/lander'
tag:
- 'latest'
- '${CI_COMMIT_TAG}'
mtu: 1300
secrets:
- 'docker_username'
- 'docker_password'
event: tag
deploy:
image: 'curlimages/curl'
secrets:
- 'webhook_url'
commands:
- 'curl -XPOST -s --fail $WEBHOOK_URL'
event: tag

View File

@ -0,0 +1,24 @@
platform: 'linux/amd64'
branches: 'dev'
pipeline:
docker:
image: 'plugins/docker'
settings:
registry: 'git.rustybever.be'
repo: 'git.rustybever.be/chewing_bever/lander'
tag:
- 'dev'
mtu: 1300
secrets:
- 'docker_username'
- 'docker_password'
event: push
deploy:
image: 'curlimages/curl'
secrets:
- 'webhook_url'
commands:
- 'curl -XPOST -s --fail $WEBHOOK_URL'
event: push