mirror of
https://github.com/bucknatt/mitsu-plugin.git
synced 2026-07-22 07:05:32 +00:00
Drop launch helpers, internal reports, and outdated release doc; add CONTRIBUTING and generic RELEASE guide. Gitignore built main.js/styles.css; sanitize docs to use placeholder vault paths.
895 B
895 B
Releasing
Releases are automated via .github/workflows/release.yml.
Steps
- Bump
versionin rootmanifest.jsonand add the entry toversions.json. - Commit and push
main. - Create an annotated tag matching the version exactly (no
vprefix):
git tag -a 1.0.2 -m "1.0.2"
git push origin 1.0.2
-
Open the draft release on GitHub, verify assets, publish:
obsidian-miku-plugin/main.jsmanifest.json(repo root)obsidian-miku-plugin/styles.css
-
Confirm the release
manifest.jsonhas the same"version"as the tag.
Manual release
npm run build --prefix ./obsidian-miku-plugin
gh release create 1.0.2 \
obsidian-miku-plugin/main.js \
manifest.json \
obsidian-miku-plugin/styles.css \
--title 1.0.2 \
--notes "Release notes here."