Add ci pipeline

This commit is contained in:
Nikurasu 2023-04-11 14:10:47 +02:00
parent b4eddd06fe
commit bec5daa377
No known key found for this signature in database

19
.woodpecker.yml Normal file
View file

@ -0,0 +1,19 @@
workspace:
path: static-hoster
base: /build
pipeline:
build:
image: docker:23-cli
privileged: true
commands:
- docker buildx build --no-cache -t dev.cat-enby.club/nikurasu/cobalt:latest -t dev.cat-enby.club/nikurasu/cobalt:$(date "+%Y-%m-%d") -f Dockerfile .
- docker login -u $USER -p $PASSWORD dev.cat-enby.club
- docker push dev.cat-enby.club/nikurasu/static-hoster:latest
- docker push dev.cat-enby.club/nikurasu/static-hoster:$(date "+%Y-%m-%d")
volumes:
- /var/run/docker.sock:/var/run/docker.sock
secrets: [ user, password ]
branches: main