Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,17 @@ jobs:
node-version: 22
cache: pnpm
registry-url: https://registry.npmjs.org
# npm CLI >= 11.5.1 detects the GitHub Actions OIDC token via
# ACTIONS_ID_TOKEN_REQUEST_URL/_TOKEN and, when a matching Trusted
# Publisher is configured for the package on npmjs.com, exchanges it
# for a short-lived publish credential — no NPM_TOKEN needed. The Node
# 22 image ships npm 10.x, so pin a newer one here.
- run: npm install -g npm@latest
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# Attach sigstore provenance to the published tarball.
NPM_CONFIG_PROVENANCE: "true"
run: npx semantic-release
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentbrain",
"version": "0.1.0",
"name": "agentbrain-cli",
"version": "1.0.0",
"description": "CLI for AgentBrain enterprise data hub - interact with organizations, connectors, knowledge bases, and workflows",
"type": "module",
"bin": {
Expand Down
Loading