We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a12e27d commit fe0ebcfCopy full SHA for fe0ebcf
.github/workflows/deploy_alpha.yml
@@ -74,17 +74,17 @@ jobs:
74
echo "1" > .alpha_version
75
fi
76
INCREMENTAL_NUMBER=$(cat .alpha_version)
77
-
+
78
# Increment version number
79
NEW_INCREMENTAL_NUMBER=$((INCREMENTAL_NUMBER+1))
80
81
# Save the new incremental number to the file
82
echo "${NEW_INCREMENTAL_NUMBER}" > .alpha_version
83
84
# Update package version with 2.0.0.alpha.<incremental_number>
85
NEW_VERSION="2.0.0.alpha.${INCREMENTAL_NUMBER}"
86
npm version "${NEW_VERSION}" --no-git-tag-version
87
88
# Commit the version update and incremental number
89
git config --global user.email "github-actions[bot]@users.noreply.github.com"
90
git config --global user.name "GitHub Actions"
0 commit comments