From fe0ebcf2f660364e625a7ec0a2286683ee72ad6e Mon Sep 17 00:00:00 2001 From: GPortas Date: Mon, 23 Sep 2024 12:52:12 +0200 Subject: [PATCH] Fixed: deploy_alpha.yml format --- .github/workflows/deploy_alpha.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy_alpha.yml b/.github/workflows/deploy_alpha.yml index 555172be..65b607d9 100644 --- a/.github/workflows/deploy_alpha.yml +++ b/.github/workflows/deploy_alpha.yml @@ -74,17 +74,17 @@ jobs: echo "1" > .alpha_version fi INCREMENTAL_NUMBER=$(cat .alpha_version) - + # Increment version number NEW_INCREMENTAL_NUMBER=$((INCREMENTAL_NUMBER+1)) - + # Save the new incremental number to the file echo "${NEW_INCREMENTAL_NUMBER}" > .alpha_version - + # Update package version with 2.0.0.alpha. NEW_VERSION="2.0.0.alpha.${INCREMENTAL_NUMBER}" npm version "${NEW_VERSION}" --no-git-tag-version - + # Commit the version update and incremental number git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.name "GitHub Actions"