Skip to content

Commit ab6dae3

Browse files
committed
v0.0.1
1 parent f8cfa57 commit ab6dae3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
yarn workspace docflow build
4444
mkdir -p out
4545
cd packages/cli
46-
yarn pack --out ../../out
46+
yarn pack --out ../../out/docflow-cli.tgz
4747
4848
- id: extract-changelog
4949
uses: dahlia/submark@5a5ff0a58382fb812616a5801402f5aef00f90ce
@@ -75,9 +75,9 @@ jobs:
7575
npm config set //registry.npmjs.org/:_authToken "$NPM_AUTH_TOKEN"
7676
npm whoami
7777
if [[ "$GITHUB_REF_TYPE" = "tag" ]]; then
78-
npm publish --provenance --access public *.tgz
78+
npm publish --provenance --access public docflow-cli.tgz
7979
else
80-
npm publish --provenance --access public --tag dev *.tgz
80+
npm publish --provenance --access public --tag dev docflow-cli.tgz
8181
fi
8282
env:
8383
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

packages/cli/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,9 @@
4848
"ts-morph": "^22.0.0",
4949
"unconfig": "^0.3.11",
5050
"zod": "^3.22.4"
51+
},
52+
"repository": {
53+
"type": "git",
54+
"url": "https://github.com/toss/docflow"
5155
}
5256
}

0 commit comments

Comments
 (0)