Skip to content

Commit

Permalink
chore(CI): updated lerna to not publish private packages (#9501)
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman authored Aug 16, 2023
1 parent 209b505 commit 230613a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo "Doing a release..."
LOG=$(git log --format="%s" -1 | grep -Poe "#\d+")
PR_NUM=${LOG:1}

yarn run lerna publish --conventional-commits --conventional-prerelease --dist-tag=prerelease --yes 2>&1 | tee lerna-output.txt
yarn run lerna publish --conventional-commits --conventional-prerelease --dist-tag=prerelease --yes --no-private 2>&1 | tee lerna-output.txt

# use lerna command below for dry run
# yarn run lerna version --conventional-commits --conventional-prerelease --yes --no-git-tag-version --no-push
Expand Down
4 changes: 3 additions & 1 deletion packages/react-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "@patternfly/react-integration",
"private": true,
"version": "5.1.1-prerelease.0",
"description": "Integration testing for PF5 using demo applications",
"main": "lib/index.js",
Expand All @@ -19,6 +18,9 @@
"url": "https://github.com/patternfly/patternfly-react/issues"
},
"homepage": "https://github.com/patternfly/patternfly-react#readme",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"build:integration:report": "cd results && junit-merge * && node ../scripts/junit2html.js",
"clean": "rimraf cypress/videos cypress/screenshots",
Expand Down

0 comments on commit 230613a

Please sign in to comment.