Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ on:
push:
tags:
- "v*"
# `v0.0.0-*` is this repository's marker for a tag that is NOT a product
# version — a place to hang a binary that needs a permanent public URL, the
# way `v0.0.0-stt-models` hosts the 360 MB Whisper model. Without this
# exclusion, creating one runs the whole matrix — Windows, macOS x2, Linux,
# installers, notarisation — to publish an archive nobody asked it to build.
# That has already happened once.
#
# The other five release-triggered workflows do not need the same guard:
# AUR, Nix, winget and Homebrew all gate on
# `!github.event.release.prerelease`, and an internal release is marked as a
# prerelease. Only the Discord announcement still fires, which is noise
# rather than a wrong publication.
- "!v0.0.0-*"
workflow_dispatch:
inputs:
arch:
Expand Down
Loading