Skip to content

Commit 871a268

Browse files
authored
investigate publish issue (#3249)
1 parent 7c8778d commit 871a268

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
uses: actions/checkout@v2.3.1
1616
with:
1717
ref: release
18-
persist-credentials: false
1918

2019
- name: Set Node Version
2120
uses: actions/setup-node@v2

tools/buildTools/publish.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ function publish() {
2222
console.log(
2323
`Skip publishing package ${packageName}, because version (${localVersion}) is not ready to publish`
2424
);
25-
} else if (localVersion == npmVersion) {
26-
console.log(
27-
`Skip publishing package ${packageName}, because version (${npmVersion}) is not changed`
28-
);
25+
// } else if (localVersion == npmVersion) {
26+
// console.log(
27+
// `Skip publishing package ${packageName}, because version (${npmVersion}) is not changed`
28+
// );
2929
} else {
3030
try {
3131
const basePublishString = `npm publish`;

0 commit comments

Comments
 (0)