diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c01bba1..80e5d5c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,6 @@ jobs: permissions: contents: write - id-token: write steps: - uses: actions/checkout@v4 @@ -30,7 +29,9 @@ jobs: node-version: 22 registry-url: https://registry.npmjs.org - - run: npm publish --provenance --access public + - run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create GitHub Release env: diff --git a/package.json b/package.json index 3bd2e69..4b45420 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Query Markup Documents - On-device hybrid search for markdown files with BM25, vector search, and LLM reranking", "type": "module", "bin": { - "qmd": "./qmd" + "qmd": "qmd" }, "files": [ "src/**/*.ts", @@ -76,5 +76,6 @@ "local-ai", "llm" ], + "author": "Tobi Lutke ", "license": "MIT" }