We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f239d3 commit e40dc6cCopy full SHA for e40dc6c
.github/workflows/publish-obsidian.yml
@@ -128,6 +128,10 @@ jobs:
128
if [ -f "temp-repo/manifest.json" ]; then
129
jq '.version = "${{ github.event.inputs.version }}"' temp-repo/manifest.json > temp.json && mv temp.json temp-repo/manifest.json
130
echo "Updated manifest.json with version ${{ github.event.inputs.version }}"
131
+ # Update the plugin ID
132
+ jq '.id = "discourse-graphs"' temp-repo/manifest.json > temp.json && mv temp.json temp-repo/manifest.json
133
+ echo "Updated manifest.json with compatible plugin ID: discourse-graphs"
134
+
135
else
136
echo "ERROR: manifest.json not found in temp-repo!"
137
exit 1
0 commit comments