File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 77
88env :
99 PLUGIN_NAME : obsidian-tasks-calendar-wrapper # Change this to match the id of your plugin.
10+ JSPATH : ExampleVault/.obsidian/plugins/tasks-view/main.js
1011
1112jobs :
1213 build :
2728 npm install
2829 npm run build
2930 mkdir ${{ env.PLUGIN_NAME }}
30- cp ExampleVault/.obsidian/plugins/tasks-view/main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}
31+ cp ${{ env.JSPATH }} manifest.json styles.css ${{ env.PLUGIN_NAME }}
3132 zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
3233 ls
3334 echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
6263 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6364 with :
6465 upload_url : ${{ steps.create_release.outputs.upload_url }}
65- asset_path : ./main.js
66+ asset_path : ${{ env.JSPATH }}
6667 asset_name : main.js
6768 asset_content_type : text/javascript
6869
You can’t perform that action at this time.
0 commit comments