533b13746d
like running the wrong node version for the build
9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
set -e
|
|
VERSION=$(jq -r ".version" package.json)
|
|
PACKAGE=matrixto-$VERSION.tar.gz
|
|
yarn build
|
|
pushd build
|
|
tar -czvf ../$PACKAGE ./
|
|
popd
|
|
echo $PACKAGE
|