This commit is contained in:
Denys Vuika
2023-11-21 14:37:27 +00:00
parent f4f1131b73
commit 7e1c1f472e
3 changed files with 2 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ jobs:
- name: build libraries - name: build libraries
run: | run: |
set -u; set -u;
./scripts/update-version.sh -gnu -nextalpha|| exit 1; ./scripts/update-version.sh -gnu -nextalpha || exit 1;
npx nx affected:build $NX_CALCULATION_FLAGS --prod --exclude="demoshell" --skip-nx-cache npx nx affected:build $NX_CALCULATION_FLAGS --prod --exclude="demoshell" --skip-nx-cache
npx nx affected $NX_CALCULATION_FLAGS --target=pretheme npx nx affected $NX_CALCULATION_FLAGS --target=pretheme
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3

View File

@@ -7,6 +7,5 @@ BRANCH=${GITHUB_REF##*/}
if [[ $BRANCH =~ ^develop(-patch.*)?$ ]] if [[ $BRANCH =~ ^develop(-patch.*)?$ ]]
then then
echo "Replace NPM version with new Alpha tag" echo "Replace NPM version with new Alpha tag"
NEXT_VERSION=-nextalpha ./scripts/update-version.sh -gnu -nextalpha || exit 1;
./scripts/update-version.sh -gnu $NEXT_VERSION || exit 1;
fi fi

View File

@@ -36,8 +36,6 @@ LICENSE_GREP=`escape_for_grep "$LICENSE_ROW"`
LICENSE_README="$ROOTDIR/docs/license-info/README.md"; LICENSE_README="$ROOTDIR/docs/license-info/README.md";
LICENSE_GREP_RESULT=`grep "$LICENSE_GREP" "$LICENSE_README"`; LICENSE_GREP_RESULT=`grep "$LICENSE_GREP" "$LICENSE_README"`;
#./scripts/update-version.sh -v $VERSION
if [ -z "$LICENSE_GREP_RESULT" ]; if [ -z "$LICENSE_GREP_RESULT" ];
then then
echo -e "\e[33mAdding third party license info for version: $VERSION\e[0m" echo -e "\e[33mAdding third party license info for version: $VERSION\e[0m"