Skip to content

Commit fe0ebcf

Browse files
committed
Fixed: deploy_alpha.yml format
1 parent a12e27d commit fe0ebcf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy_alpha.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,17 @@ jobs:
7474
echo "1" > .alpha_version
7575
fi
7676
INCREMENTAL_NUMBER=$(cat .alpha_version)
77-
77+
7878
# Increment version number
7979
NEW_INCREMENTAL_NUMBER=$((INCREMENTAL_NUMBER+1))
80-
80+
8181
# Save the new incremental number to the file
8282
echo "${NEW_INCREMENTAL_NUMBER}" > .alpha_version
83-
83+
8484
# Update package version with 2.0.0.alpha.<incremental_number>
8585
NEW_VERSION="2.0.0.alpha.${INCREMENTAL_NUMBER}"
8686
npm version "${NEW_VERSION}" --no-git-tag-version
87-
87+
8888
# Commit the version update and incremental number
8989
git config --global user.email "github-actions[bot]@users.noreply.github.com"
9090
git config --global user.name "GitHub Actions"

0 commit comments

Comments
 (0)