Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.17 KB

File metadata and controls

17 lines (13 loc) · 1.17 KB

vcv-plugin-github-actions-example

Example repository for building and publishing a VCV Rack plugin with GitHub Actions.

Build VCV Rack Plugin


How to build a VCVRack plugin with Github Action

  1. In your plugin repository create a folder .github/workflows
  2. Put the workflow definition 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 and the tag starts with v (it is a convention), otherwise the the publish step will be canceled.