diff options
| author | Jeff Carr <[email protected]> | 2025-10-09 01:35:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-09 01:35:40 -0500 |
| commit | 3cee0f0354f21889d454dbc4867f963020457a18 (patch) | |
| tree | 4866cbfa50c2f4531d3ad3d1d678e006dfcc8844 | |
| parent | 97fb72d696512cbe53502918ea059b4ab6fc9755 (diff) | |
notes
| -rw-r--r-- | doPublish.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doPublish.go b/doPublish.go index b15d92b..c3ac3f9 100644 --- a/doPublish.go +++ b/doPublish.go @@ -53,8 +53,15 @@ func doPublish() error { me.sh.BadExit("merge failed", nil) } + if os.Getenv("GUIRELEASE_REASON") == "" { + os.Setenv("GUIRELEASE_REASON", "automated") + } cmd = []string{"guireleaser", "--gui", "andlabs", "--auto-run"} - if !argv.All { + if argv.All { + // publish everything. don't be quick about it + // updates all go.mod and go.sum files for every repo + // that has dependancy changes. todo: only do binaries + } else { // only publish packages that have commits cmd = append(cmd, "quick") } |
