Feat/cli launch ready v2 (#582)

* fix(cli): use full path for dist artifacts in release step

* test: temporarily allow release workflow on any branch

* fix(cli): restore main-only guard, remove goreleaser dependency

Replaces GoReleaser (Pro-only monorepo feature) with plain go build.
Tested: RC release created successfully on branch with all 6 binaries.
This commit is contained in:
shivammittal274
2026-03-27 01:28:04 +05:30
committed by GitHub
parent 085352a6f0
commit aa85907212

View File

@@ -114,8 +114,9 @@ jobs:
git push origin "$TAG"
fi
CLI_DIST="packages/browseros-agent/apps/cli/dist"
gh release create "$TAG" \
--title "browseros-cli v${{ inputs.version }}" \
--notes-file /tmp/release-notes.md \
dist/*
${CLI_DIST}/*
working-directory: ${{ github.workspace }}