dependency-check/.woodpecker.yml
Simon Vieille 408ad78b43
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add ci configration
2022-12-07 15:31:08 +01:00

29 lines
663 B
YAML

pipeline:
build_commit:
image: plugins/docker
secrets: [registry_user, registry_password]
settings:
username:
from_secret: registry_user
password:
from_secret: registry_password
registry: gitnet.fr
repo: gitnet.fr/${CI_REPO}
tags: ${CI_COMMIT_SHA}
when:
event: [push]
build_tag:
image: plugins/docker
secrets: [registry_user, registry_password]
settings:
username:
from_secret: registry_user
password:
from_secret: registry_password
registry: gitnet.fr
repo: gitnet.fr/${CI_REPO}
tags: ${CI_COMMIT_TAG}
when:
event: [tag]