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: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
needs: smoketest
runs-on: ubuntu-latest
permissions:
contents: write # create the GitHub release
id-token: write # OIDC for npm trusted publishing
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
registry-url: https://registry.npmjs.org
- name: Upgrade npm for trusted publishing
run: npm install -g npm@latest
- run: npm ci
- run: npm run build

Expand All @@ -49,6 +54,4 @@ jobs:
files: "*.tgz"

- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public --provenance
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bobbin/cli",
"version": "0.1.4",
"version": "0.1.5",
"description": "Agent-first terminal recording",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ process.on("unhandledRejection", (err) => {
program
.name("bobbin")
.description("Agent-first terminal recording")
.version("0.1.4", "-v, --version")
.version("0.1.5", "-v, --version")

program
.command("rec")
Expand Down
Loading