Compare commits

...

3 Commits

Author SHA1 Message Date
3wc 33daa6c04f docker push at the end of build.sh 2023-07-16 18:23:48 +01:00
3wc ea67502a7d Correct docker image tag 2023-07-16 18:23:48 +01:00
3wc 6f2a868f26 Fix deleting hometown dir 2023-07-16 17:30:07 +01:00
1 changed files with 6 additions and 2 deletions

View File

@ -9,8 +9,12 @@ eval "$(yq '.steps.[0].commands[]' < .drone.yml)"
TAG="$(yq '.steps.[1].settings.tags' < .drone.yml)"
cd hometown || return 1
(
cd hometown || return 1
docker build -t "$TAG" .
docker build -t "git.coopcloud.tech/coop-cloud-chaos-patchs/hometown:$TAG" .
)
rm -r hometown
docker push "git.coopcloud.tech/coop-cloud-chaos-patchs/hometown:$TAG"