Docs for GitHub Workflow

There is an error in the workflow for GitHub releases:
metamodule-plugin-sdk/docs/release.md at main · 4ms/metamodule-plugin-sdk

  - name: Release
    if: startsWith(github.ref, 'refs/tags/') && ${{ inputs.do_release }}

This should be:

  - name: Release
    if: startsWith(github.ref, 'refs/tags/') && inputs.do_release

Thanks! I never noticed that – it runs but the ${{ ... } version always evaluates to true, so it always creates a release if you use a tag.

I’ll update the script