Skip to content

Commit d83142d

Browse files
committed
Fixed: missing git push in deploy_alpha.yml added
1 parent abf0944 commit d83142d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/deploy_alpha.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ jobs:
8181
# Save the new incremental number to the file
8282
echo "${NEW_INCREMENTAL_NUMBER}" > .alpha_version
8383
84-
# Update package version with 2.0.0.alpha.<incremental_number>
85-
NEW_VERSION="2.0.0-test.${INCREMENTAL_NUMBER}"
84+
# Update package version with 2.0.0-alpha.<incremental_number>
85+
NEW_VERSION="2.0.0-test1.${INCREMENTAL_NUMBER}"
8686
npm version "${NEW_VERSION}" --no-git-tag-version
8787
8888
# Commit the version update and incremental number
@@ -91,6 +91,9 @@ jobs:
9191
git add package.json .alpha_version
9292
git commit -m "Update version to ${NEW_VERSION}"
9393
94+
# Push the changes to the repository
95+
git push origin develop
96+
9497
- name: Publish package
9598
run: |
9699
echo "$(jq '.publishConfig.registry = "https://npm.pkg.github.com"' package.json)" > package.json

0 commit comments

Comments
 (0)