Skip to content

Commit

Permalink
Fixed: missing git push in deploy_alpha.yml added
Browse files Browse the repository at this point in the history
  • Loading branch information
GPortas committed Sep 23, 2024
1 parent abf0944 commit d83142d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy_alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:
# Save the new incremental number to the file
echo "${NEW_INCREMENTAL_NUMBER}" > .alpha_version
# Update package version with 2.0.0.alpha.<incremental_number>
NEW_VERSION="2.0.0-test.${INCREMENTAL_NUMBER}"
# Update package version with 2.0.0-alpha.<incremental_number>
NEW_VERSION="2.0.0-test1.${INCREMENTAL_NUMBER}"
npm version "${NEW_VERSION}" --no-git-tag-version
# Commit the version update and incremental number
Expand All @@ -91,6 +91,9 @@ jobs:
git add package.json .alpha_version
git commit -m "Update version to ${NEW_VERSION}"
# Push the changes to the repository
git push origin develop
- name: Publish package
run: |
echo "$(jq '.publishConfig.registry = "https://npm.pkg.github.com"' package.json)" > package.json
Expand Down

0 comments on commit d83142d

Please sign in to comment.