commit 576780068f49bb0ec32aaf66b5fb30dffe64f3a5 Author: Simon Vieille Date: Sat Dec 31 13:24:59 2022 +0100 add ci diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..f7795e9 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,19 @@ +pipeline: + shellcheck: + image: koalaman/shellcheck + commands: + - shellcheck ./timeout + + 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: latest + when: + event: [push] diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9220a3c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine:3 + +ENTRYPOINT ["./timeout"]