mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Remove VERSION file in favour of version entry in `package.json`. Parse this version in our build server scripts. This commit also introduces `standard-version` which we can use to generate our `CHANGELOG.md` with `yarn run release`. close #1831
17 lines
464 B
Bash
Executable File
17 lines
464 B
Bash
Executable File
#!/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}"
|