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 c44af11 commit f2ce2ebCopy full SHA for f2ce2eb
release.config.js
@@ -1,3 +1,5 @@
1
+const pluginName = require('./package.json').name
2
+
3
module.exports = {
4
branches: ["master"],
5
plugins: [
@@ -20,13 +22,13 @@ module.exports = {
20
22
"@semantic-release/exec",
21
23
{
24
prepareCmd:
- "zip -qq -r logseq-ticktick-plugin-${nextRelease.version}.zip dist readme.md logo.png LICENSE package.json",
25
+ "zip -qq -r " + pluginName + "-${nextRelease.version}.zip dist readme.md logo.png LICENSE package.json",
26
},
27
],
28
[
29
"@semantic-release/github",
30
- assets: "logseq-plugin-template-react-*.zip",
31
+ assets: [`${pluginName}-*.zip`],
32
33
34
0 commit comments