We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e029e29 commit 3206f59Copy full SHA for 3206f59
.github/workflows/release.yml
@@ -25,6 +25,6 @@ jobs:
25
- name: Debug TypeScript files
26
run: npx tsc --noEmit --project tsconfig.json
27
28
- - run: tsx src/cli.ts
+ - run: npm run git:release
29
env:
30
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
package.json
@@ -31,7 +31,8 @@
31
"build": "tsdown",
32
"lint": "eslint",
33
"lint:fix": "eslint --fix",
34
- "release": "npm run build && npm publish"
+ "release": "npm run build && npm publish",
35
+ "git:release": "tsx src/cli.ts"
36
},
37
"publishConfig": {
38
"registry": "https://registry.npmjs.org",
0 commit comments