tauri-action
tauri-action copied to clipboard
Ignores `draft` option
While releasing, using this config block immediately creates a public release instead of a release draft
- name: Tauri Build
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# NOTE: "__VERSION__" automatically replaced
tagName: v__VERSION__
releaseName: v__VERSION__
body: "See the assets to download this version and install."
prerelease: false
draft: true
Also, it seems like the body is ignored too.
This is what a release looks like upon completion:
The correct options for this are releaseDraft and releaseBody. The README used to show an out-of-date example.