diff --git a/.github/workflows/build-plugin.yml b/.github/workflows/build-plugin.yml index 6365186..13ee988 100644 --- a/.github/workflows/build-plugin.yml +++ b/.github/workflows/build-plugin.yml @@ -121,25 +121,33 @@ jobs: tag: ${{ github.ref }} file_glob: true - publish-nightly: - name: Publish nightly + publish-preview: + name: Publish preview build runs-on: ubuntu-latest needs: [build, build-mac] steps: + - uses: actions/checkout@v4 + with: + ref: master - uses: actions/download-artifact@v4 with: path: _artifacts - - name: Delete old release assets - uses: mknejp/delete-release-assets@v1 + - name: Delete old preview release + run: | + gh release delete Preview --repo ${{ github.repository }} --yes || true + - name: Create new preview release + uses: softprops/action-gh-release@v1 with: - token: ${{ github.token }} - tag: Nightly # This may also be of the form 'refs/tags/staging' - fail-if-no-assets: false - assets: '*' + tag_name: Preview + name: Preview + body: | + ⚠ Could be crash bugs in this one, this rebuilds for every commit. I especially recommend avoiding this if it's less than a day old. ⚠ + draft: false + prerelease: true - name: Upload release assets uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: _artifacts/**/*.vcvplugin - tag: Nightly + tag: Preview file_glob: true \ No newline at end of file diff --git a/src/spine.cpp b/src/spine.cpp index 6d664fe..fd484e8 100644 --- a/src/spine.cpp +++ b/src/spine.cpp @@ -57,7 +57,7 @@ struct Spine : Module { Spine() { config(PARAMS_LEN, INPUTS_LEN, OUTPUTS_LEN, LIGHTS_LEN); // Configure the toggle switch parameter with a label and a tooltip for additional detail - configParam(TOGGLE_SWITCH, 0.f, 1.f, 0.f, "Alt Mode: Process at audio rate (CPU heavy)"); + configParam(TOGGLE_SWITCH, 0.f, 1.f, 0.f, "Alt Mode: Process at audio rate instead of 10ms"); // Configure the main polyphonic input configInput(X_INPUT, "x");