Skip to content

aicmd 2.0 based on ollama #10

aicmd 2.0 based on ollama

aicmd 2.0 based on ollama #10

Workflow file for this run

name: publish package to npmjs
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build:cli
- run: npm publish
working-directory: packages/cli
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}