Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set skill distribution mode to public by default #612

Merged
merged 1 commit into from
Sep 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/scripts/generateDeployConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ function updateSkillManifest() {
const schema = loadSchema(SKILL_MANIFEST_FILE);
// Extract publishing information from manifest
const { publishingInformation } = schema.manifest;
// Set publishing distribution mode as public
publishingInformation.distributionMode = 'PUBLIC';
// Set publishing testing instructions username and passowrd
publishingInformation.testingInstructions = publishingInformation.testingInstructions
.replace('%TESTING_USERNAME%', process.env.TESTING_USERNAME)
Expand Down
2 changes: 1 addition & 1 deletion skill-package/skill.json
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@
},
"distributionCountries": [],
"isAvailableWorldwide": true,
"distributionMode": "PRIVATE",
"distributionMode": "PUBLIC",
"testingInstructions": "A demo account has been setup on our cloud service myopenhab.org for this skill:\n\nUsername: %TESTING_USERNAME%\nPassword: %TESTING_PASSWORD%\n\nOnce the skill is linked to our cloud service and discovery is run, it should find a few lights, a lock, a speaker, a thermostat and a window blind.",
"category": "SMART_HOME"
},
Expand Down