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
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
permissions:
contents: read
packages: write
id-token: write

jobs:
build:
Expand All @@ -24,6 +25,26 @@ jobs:
- run: npm ci
- run: npm run build

npm-publish:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'release'
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
registry-url: 'https://registry.npmjs.org'

- run: npm ci

- run: npm publish --provenance --access public

docker:
runs-on: ubuntu-latest
needs: build
Expand Down
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"name": "@fullstackhouse/agentloop",
"version": "0.4.1",
"description": "AI agent that monitors chat platforms and responds using Claude Code",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstackhouse/agentloop.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"engines": { "node": ">=22" },
"bin": {
Expand Down
Loading