Remove github release script

- Looking at our releases, https://github.com/Human-Connection/Human-Connection/releases, the ones created from our build server, are not sufficient.

As part of the deploy process, I have been manually creating the Releases in Github, using our CHANGELOG.md.... I propose we remove this script from our build server, as it's now breaking our master build and it's not being used.
This commit is contained in:
mattwr18 2020-02-03 18:22:21 +01:00
parent 34ec61153a
commit 39ea0a556b
2 changed files with 0 additions and 20 deletions

View File

@ -69,7 +69,3 @@ deploy:
script: bash scripts/deploy.sh
on:
branch: master
- provider: script
script: bash scripts/github_release.sh
on:
branch: master

View File

@ -1,16 +0,0 @@
#!/usr/bin/env bash
ROOT_DIR=$(dirname "$0")/..
RELEASE_DIR="${ROOT_DIR}/release"
VERSION=$(jq -r ".version" $ROOT_DIR/package.json)
# mkdir -p $RELEASE_DIR
# The following command part produces 854M on my machine
# apps=(nitro-web nitro-backend neo4j maintenance-worker maintenance)
# for app in "${apps[@]}"
# do
# docker image save "humanconnection/${app}:latest" | gzip > "${RELEASE_DIR}/${app}.${VERSION}.tar.gz"
# done
ghr -c "${VERSION}" "${VERSION}"