Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ done

# 3. Verify (§3), then attach the dmgs, drop the unsigned zips, and publish
gh release upload v0.1.0 LevelCode-arm64.dmg LevelCode-x64.dmg
gh release delete-asset v0.1.0 UNSIGNED-LevelCode-arm64.app.zip UNSIGNED-LevelCode-x64.app.zip
# `gh release delete-asset` takes ONE asset per call — drop each unsigned zip separately (`-y` skips the prompt).
gh release delete-asset v0.1.0 UNSIGNED-LevelCode-arm64.app.zip -y
gh release delete-asset v0.1.0 UNSIGNED-LevelCode-x64.app.zip -y
gh release edit v0.1.0 --draft=false --notes-file RELEASE-NOTES.md
```

Expand Down