Comparar commits

...

1 Commits

Autor SHA1 Mensaje Fecha
Florian Brinker
2c4c532dff Add published version/tag check to skip docker builds
Todas las comprobaciones han sido exitosas
continuous-integration/drone Build is passing
2021-04-21 23:51:08 +02:00
Se han modificado 2 ficheros con 24 adiciones y 9 borrados

Ver fichero

@ -7,7 +7,7 @@ steps:
- name: build - name: build
image: alpine image: alpine
commands: commands:
- apk update && apk add bash grep sed curl unzip - apk update && apk add bash grep sed curl unzip jq
- chmod +x ./build.sh - chmod +x ./build.sh
- ./build.sh - ./build.sh

27
build.sh Archivo normal → Archivo ejecutable
Ver fichero

@ -10,20 +10,35 @@ getVersionFromLatestRelease() {
} }
downloadLatestRelease() { downloadLatestRelease() {
URL=`curl -s "https://api.github.com/repos/resoai/TileBoard/releases/latest" \ url=`curl -s "https://api.github.com/repos/resoai/TileBoard/releases/latest" \
| grep "browser_download_url" \ | grep "browser_download_url" \
| cut -d '"' -f 4` | cut -d '"' -f 4`
echo "Url: $URL" echo "Url: $url"
curl -sL -o $1 ${URL} curl -sL -o $1 ${url}
} }
LATEST=`getVersionFromLatestRelease` getLatestPublishedTag() {
SEMVER=( ${LATEST//./ } ) latest_tag=`curl -s "https://hub.docker.com/v2/repositories/fbrinker/tileboard/tags?page_size=1" \
| jq -r ".results[0].name"`
echo "$latest_tag"
}
LATEST_RELEASE=`getVersionFromLatestRelease`
LATEST_TAG=`getLatestPublishedTag`
if [ "$LATEST_RELEASE" = "$LATEST_TAG" ]; then
echo "Nothing to do. Versions already match."
echo "Release: $LATEST_RELEASE"
echo "Tag: $LATEST_TAG"
exit 78 # drone.io exit code to stop but success the pipeline
fi
SEMVER=( ${LATEST_RELEASE//./ } )
MAJOR=${SEMVER[0]} MAJOR=${SEMVER[0]}
MINOR=${SEMVER[0]}.${SEMVER[1]} MINOR=${SEMVER[0]}.${SEMVER[1]}
PATCH=$LATEST PATCH=$LATEST_RELEASE
echo "latest,$MAJOR,$MINOR,$PATCH" > .tags echo "latest,$MAJOR,$MINOR,$PATCH" > .tags