|
|
@@ -122,7 +122,7 @@ jobs:
|
|
|
if ! gh release view "$tag" >/dev/null 2>&1; then
|
|
|
gh release create "$tag" --title "QMAI $tag" --notes-file "$notes_path" --verify-tag || true
|
|
|
fi
|
|
|
- gh release edit "$tag" --notes-file "$notes_path"
|
|
|
+ gh release edit "$tag" --notes-file "$notes_path" --draft=false
|
|
|
|
|
|
- name: Build Tauri app
|
|
|
env:
|
|
|
@@ -187,7 +187,7 @@ jobs:
|
|
|
$latestPath = Join-Path $releaseDir "latest.json"
|
|
|
$latest.notes = $notes
|
|
|
$latest | ConvertTo-Json -Depth 5 | Set-Content -Path $latestPath -Encoding utf8
|
|
|
- gh release edit "${{ github.ref_name }}" --notes-file $notesPath
|
|
|
+ gh release edit "${{ github.ref_name }}" --notes-file $notesPath --draft=false
|
|
|
gh release upload "${{ github.ref_name }}" $assetPath $assetSignaturePath $latestPath --clobber
|
|
|
|
|
|
- name: Package macOS release assets
|