Skip to content

Commit fc4786e

Browse files
committed
CI
1 parent b046286 commit fc4786e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
tags: ["v*"]
55
jobs:
66
build:
7-
uses: ./.github/workflows/ci.yml
7+
uses: ./.github/workflows/build.yml
88
publish:
99
needs: build
1010
runs-on: ubuntu-24.04
@@ -20,5 +20,5 @@ jobs:
2020
with:
2121
node-version: "24"
2222
registry-url: "https://registry.npmjs.org"
23-
- run: npm publish --provenance
23+
- run: npm publish --provenance --access public
2424
working-directory: .build

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"version": "1.1.0",
44
"description": "A simple CLI to clone, manage, and link repositories for LLM reference",
55
"type": "module",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/tspader/dotllm"
9+
},
10+
"publishConfig": {
11+
"access": "public"
12+
},
613
"bin": {
714
"dotllm": "src/cli/index.ts"
815
},
@@ -23,9 +30,6 @@
2330
"engines": {
2431
"bun": ">=1.1.0"
2532
},
26-
"publishConfig": {
27-
"access": "public"
28-
},
2933
"keywords": [
3034
"cli",
3135
"bun",

0 commit comments

Comments
 (0)