feat: add FreeBSD release builds (#832)
* feat: add FreeBSD release builds Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * chore: allow manual release dispatch Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: stabilize release workflow on fork Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: clean zig download artifact Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: use valid zig target for freebsd arm Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: disable freebsd arm release build Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: switch freebsd build to pure go Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: skip release publishing on forks Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> * fix: satisfy golangci-lint for release PR --------- Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
@@ -56,7 +56,7 @@ func DetectPendingMigrations(path string) []PendingMigration {
|
||||
}
|
||||
|
||||
// Check for missing sync-branch config (sync migration)
|
||||
if needsSyncMigration(beadsDir, path) {
|
||||
if needsSyncMigration(path) {
|
||||
pending = append(pending, PendingMigration{
|
||||
Name: "sync",
|
||||
Description: "Configure sync branch for multi-clone setup",
|
||||
@@ -206,7 +206,7 @@ func needsTombstonesMigration(beadsDir string) bool {
|
||||
}
|
||||
|
||||
// needsSyncMigration checks if sync-branch should be configured
|
||||
func needsSyncMigration(beadsDir, repoPath string) bool {
|
||||
func needsSyncMigration(repoPath string) bool {
|
||||
// Check if already configured
|
||||
if syncbranch.GetFromYAML() != "" {
|
||||
return false
|
||||
|
||||
Reference in New Issue
Block a user