fbrinker/docker-tileboard-OUTDATED
fbrinker
/
docker-tileboard-OUTDATED
Архівний
1
1
Форк 1

Порівняти коміти

...

2 Коміти

Автор SHA1 Повідомлення Дата
Florian Brinker 569622b11f prepare seperate development pipeline
continuous-integration/drone/push Build is passing Подробиці
continuous-integration/drone Build is passing Подробиці
2021-05-10 18:37:09 +02:00
Florian Brinker 5d14177f58 Change "target" label to "docker" 2021-05-10 18:23:41 +02:00
2 змінених файлів з 5 додано та 4 видалено

@ -1,7 +1,7 @@
---
kind: pipeline
type: docker
name: default
name: production
steps:
- name: Build Dockerfile
@ -14,6 +14,7 @@ steps:
image: plugins/docker
settings:
repo: fbrinker/tileboard
dockerfile: Dockerfile
username:
from_secret: docker_username
password:

@ -26,14 +26,14 @@ docker_tag_exists() {
}
source_repo="${1-resoai/TileBoard}"
target_repo="${2-fbrinker/tileboard}"
docker_repo="${2-fbrinker/tileboard}"
echo "Source repository: $source_repo."
echo "Target repository: $target_repo."
echo "Docker repository: $docker_repo."
LATEST_RELEASE=`getVersionFromLatestRelease $source_repo`
echo "Latest release is: $LATEST_RELEASE."
if docker_tag_exists $target_repo $LATEST_RELEASE; then
if docker_tag_exists $docker_repo $LATEST_RELEASE; then
echo "Nothing to do. Latest release tag already exists."
exit 78 # drone.io exit code to stop but success the pipeline
fi