There was an error while loading. Please reload this page.
1 parent d1df717 commit c8c0347Copy full SHA for c8c0347
1 file changed
.github/workflows/publish-clawhub.yml
@@ -55,7 +55,9 @@ jobs:
55
# Workaround: clawhub@0.7.0 publish doesn't send acceptLicenseTerms,
56
# which the server now requires. Use a Node.js script to publish with
57
# the corrected payload.
58
- node - <<'PUBLISH_SCRIPT'
+ # Note: NODE_TLS_REJECT_UNAUTHORIZED=0 is needed because api.clawhub.io
59
+ # has an expired SSL certificate. Remove once ClawHub renews their cert.
60
+ NODE_TLS_REJECT_UNAUTHORIZED=0 node - <<'PUBLISH_SCRIPT'
61
const { resolve } = require("path");
62
const { readFileSync, statSync, readdirSync } = require("fs");
63
const folder = resolve(".");
0 commit comments