add ci
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Simon Vieille 2022-12-07 14:58:20 +01:00
commit 14fbe3ef55
Signed by: deblan
GPG key ID: 579388D585F70417

20
.woodpecker.yml Normal file
View file

@ -0,0 +1,20 @@
pipeline:
build_commit:
image: docker:stable
commands:
- docker build
--tag gitnet.fr/$CI_REPO:$CI_COMMIT_SHA
.
- docker push gitnet.fr/$CI_REPO:$CI_COMMIT_SHA
when:
event: [push]
build_commit:
image: docker:stable
commands:
- docker build
--tag gitnet.fr/$CI_REPO:$CI_COMMIT_TAG
.
- docker push gitnet.fr/$CI_REPO:$CI_COMMIT_TAG
when:
event: [tag]