mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 02:36:39 +00:00
Add support for naming release and builds accordingly when given a git
ref for a pretest (90 or above patch number) or release
candidate ("-rcX" at the end of the tag).
12 lines
193 B
Go
12 lines
193 B
Go
package release
|
|
|
|
type Channel string
|
|
|
|
// Release channels
|
|
const (
|
|
Stable Channel = "stable"
|
|
RC Channel = "release-candidate"
|
|
Pretest Channel = "pretest"
|
|
Nightly Channel = "nightly"
|
|
)
|