Skip to content

Commit a70f350

Browse files
committed
v0.0.1
1 parent f8cfa57 commit a70f350

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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 }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Version v0.0.0
5+
## Version v0.0.1
66

77
Released on July 22nd, 2025.
88

packages/cli/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docflow",
33
"type": "module",
4-
"version": "0.0.0",
4+
"version": "0.0.1",
55
"exports": {
66
".": "./dist/index.js",
77
"./cli": "./dist/cli.js",
@@ -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)