Add ci pipeline
This commit is contained in:
parent
b4eddd06fe
commit
bec5daa377
1 changed files with 19 additions and 0 deletions
19
.woodpecker.yml
Normal file
19
.woodpecker.yml
Normal 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
|
Loading…
Reference in a new issue