Skip to content

v0.5.612 — Compaction fixes + notifications + 1M+ models #163

v0.5.612 — Compaction fixes + notifications + 1M+ models

v0.5.612 — Compaction fixes + notifications + 1M+ models #163

name: Publish to GitHub Packages
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com
scope: '@agenticmail'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Build
run: npm run build
- name: Publish to GitHub Packages
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}