Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bubobubobubobubo/bubomodules
VCVRack Experiment
https://github.com/bubobubobubobubo/bubomodules
Last synced: 2 months ago
JSON representation
VCVRack Experiment
- Host: GitHub
- URL: https://github.com/bubobubobubobubo/bubomodules
- Owner: Bubobubobubobubo
- License: gpl-3.0
- Created: 2024-02-14T18:03:09.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-14T18:03:30.000Z (11 months ago)
- Last Synced: 2024-04-17T06:50:41.140Z (9 months ago)
- Language: C++
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BuboModules
Experiments with VCVRack
### How to build a VCVRack plugin with Github Action
Taken from: [this repository](https://github.com/qno/vcv-plugin-github-actions-example)
1. In your plugin repository create a folder `.github/workflows`
2. Put the workflow definition [build-plugin.yml](https://github.com/qno/vcv-plugin-github-actions-example/blob/main/.github/workflows/build-plugin.yml) into this folder
3. Make changes to your sources and push them to Github
4. In your Github repository navigate into the Action tab to see the progress and status of the Workflow run
5. To create a Github Release that contains the built plugin for all platforms you need to create and push a tag, e.g. like this:
* `git tag v2.0.9 -m "create v2.0.9"`
* `git push origin --tags`
* **Note:** Make sure that your tag version number is the same as the version in the [plugin.json](https://github.com/qno/vcv-plugin-github-actions-example/blob/main/plugin.json#L4) and the tag starts with `v` (it is a convention), otherwise the the publish step will be canceled.