Skip to content

Commit

Permalink
chore: Update promote.sh to promote to npm.
Browse files Browse the repository at this point in the history
Update github action to promote to npm.
  • Loading branch information
dlabaj authored Aug 27, 2024
1 parent 494143d commit 7a25feb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
# Update their versions and changelogs according to angular commit guidelines
# https://github.com/angular/angular/blob/master/CONTRIBUTING.md#commit

# if [[ ! -z "${PATTERNFLY_VERSION}" ]]; then
# echo "Updating to @patternfly/patternfly: ${PATTERNFLY_VERSION}"
# npm pkg set dependencies.@patternfly/patternfly=${PATTERNFLY_VERSION} --workspace @patternfly/react-docs
# npm pkg set devDependencies.@patternfly/patternfly=${PATTERNFLY_VERSION} --workspace @patternfly/react-core --workspace @patternfly/react-styles --workspace @patternfly/react-tokens --workspace @patternfly/react-icons
# fi
if [[ ! -z "${PATTERNFLY_VERSION}" ]]; then
echo "Updating to @patternfly/patternfly: ${PATTERNFLY_VERSION}"
npm pkg set dependencies.@patternfly/patternfly=${PATTERNFLY_VERSION} --workspace @patternfly/react-docs
npm pkg set devDependencies.@patternfly/patternfly=${PATTERNFLY_VERSION} --workspace @patternfly/react-core --workspace @patternfly/react-styles --workspace @patternfly/react-tokens --workspace @patternfly/react-icons
fi

# publish to npm
# yarn run lerna publish --conventional-commits --conventional-graduate --no-private --dist-tag=latest --yes
yarn run lerna publish --conventional-commits --conventional-graduate --no-private --dist-tag=latest --yes

# immediately after promote - set up repo for next prerelease
# yarn run lerna version preminor --force-publish --conventional-commits --no-private --yes --preid prerelease

# dry run
yarn run lerna version --conventional-commits --conventional-graduate --no-private --yes --no-git-tag-version --no-push
# yarn run lerna version --conventional-commits --conventional-graduate --no-private --yes --no-git-tag-version --no-push


0 comments on commit 7a25feb

Please sign in to comment.