@rahul05ranjan/dhruv-cli 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rahul05ranjan/dhruv-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "AI-powered CLI assistant for developers using Ollama",
5
5
  "keywords": [
6
6
  "ai",
@@ -1,34 +0,0 @@
1
- name: Release Please
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- permissions:
9
- contents: write
10
- pull-requests: write
11
-
12
- jobs:
13
- release-please:
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: google-github-actions/release-please-action@v4
17
- with:
18
- release-type: node
19
- token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
20
- - name: Checkout
21
- uses: actions/checkout@v4
22
- - name: Set up Node.js
23
- uses: actions/setup-node@v4
24
- with:
25
- node-version: '18.x'
26
- registry-url: 'https://npm.pkg.github.com/'
27
- - name: Install dependencies
28
- run: npm ci
29
- - name: Build
30
- run: npm run build
31
- - name: Publish to GitHub Packages
32
- run: npm publish
33
- env:
34
- NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}