diff --git a/update-version.sh b/update-version.sh index 81ab578..96fcf8b 100755 --- a/update-version.sh +++ b/update-version.sh @@ -16,9 +16,6 @@ git reset --hard origin/master echo "Fetching latest version..." LATEST=$(curl -sSLf 'https://latest.luzifer.io/catalog-api/grafana/latest.txt?p=version') -echo "Testing presence of build artifact for ${LATEST}..." -curl -sSILf https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana_${LATEST}_amd64.deb - echo "Found version ${LATEST}, patching..." sed -i "s/^ENV GRAFANA_VERSION.*$/ENV GRAFANA_VERSION ${LATEST}/" Dockerfile @@ -31,7 +28,7 @@ docker build . echo "Updating repository..." git add Dockerfile git -c user.name='Travis Automated Update' -c user.email='travis@luzifer.io' \ - commit -m "Grafana ${LATEST}" + commit -m "Grafana ${LATEST}" git tag ${LATEST} git push -q https://${GH_USER}:${GH_TOKEN}@github.com/luzifer-docker/grafana.git master --tags