Add CI-Pipeline for docker (#1)
ci/woodpecker/push/woodpecker Pipeline failed Details

Reviewed-on: #1
This commit is contained in:
Nikurasu 2023-04-05 21:06:14 +02:00
parent 898a5d857a
commit f5f97d41ce
2 changed files with 16 additions and 0 deletions

16
.woodpecker.yml Normal file
View File

@ -0,0 +1,16 @@
pipeline:
build:
secrets: [user, pass, HOMETOWN_VERSION]
image: docker.io/docker:23-cli
commands:
- apk add curl git
- docker login -u $USER -p $PASS dev.cat-enby.club
- HOMETOWN_VERSION=$(curl -sX GET "https://api.github.com/repos/hometown-fork/hometown/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]')
- HOMETOWN_VERSION=$${HOMETOWN_VERSION//+}
- docker buildx build --build-arg HOMETOWN_VERSION=$HOMETOWN_VERSION -t dev.cat.enby.club/nikurasu/hometown:latest -t dev.cat-enby.club/nikurasu/hometown:$${HOMETOWN_VERSION//+} -f ./Dockerfile .
- docker push dev.cat-enby.club/nikurasu/hometown:$HOMETOWN_VERSION
- docker push dev.cat-enby.club/nikurasu/hometown:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
when:
branch: main

0
testfile Normal file
View File