Replies: 2 comments
-
I think there are two questions that are somewhat, but not completely, related:
Specifically:
You might want to use something like semantic-release to build these (preview) versions in an automated way, but you can of course also use other automations. Not sure how much you're aware or knowledgeable about these. There are a few caveats, including how to deal with commits to |
Beta Was this translation helpful? Give feedback.
-
@holroy to build releases locally, while adhering to semantic release version numbers, you might also want to look at
I wrote up a Gist for Local Obisidian plugin releases with (If you have created a GitHub Workflow that builds a release based on tags, you might want to either disable it or edit it such that "pre-release" tags don't trigger it. Reason is that pre-rereleases won't modify |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently dataview is on version 0.5.68, and I've started dreaming about 0.6.x version, and I'm finding myself wanting to branch of and start releasing beta versions on a
dev-0.6
branch. The question then becomes how do I do that with a publicly available plugin, and without interference on the master branch.I do want to be able to release minor bug fixes and so on related to the official version, in addition to releasing beta releases related to the 0.6 version.
I've already got a setup with
manifest-beta.json
, but I'm uncertain on the releasing from a branch, and how to do version numbering without causing issues here and there. So is there any suggestions on how to move forward in such a use case?Can I just keep releasing
0.5.69
,0.5.70
, ..., and in between release something like0.6.0-alpha-1
from another branch using BRAT?Beta Was this translation helpful? Give feedback.
All reactions