Skip to content

Commit

Permalink
fix: action push error
Browse files Browse the repository at this point in the history
  • Loading branch information
player31-kks committed Dec 31, 2023
1 parent e5b3a4e commit 463e9ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
- run: yarn release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PAT }}
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}

1 change: 1 addition & 0 deletions bin/start.js → bin/start
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env node
/* eslint-disable @typescript-eslint/no-var-requires */

if (['v', 'version', '-v', '--v', '-version', '--version'].includes(process.argv[2])) {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-typescript-boilerplate",
"version": "0.0.2",
"version": "0.0.3",
"description": "boilerplate for typescript project",
"main": "index.js",
"license": "MIT",
Expand All @@ -12,11 +12,11 @@
"test": "jest",
"dev": "npm run typecheck -- --watch & tsx watch ./src/main.ts",
"clean": "rm -rf dist ./dist",
"dev:cli": "node bin/start.js",
"dev:cli": "node bin/start",
"release": "release-it"
},
"bin": {
"create-typescript-boilerplate": "bin/start.js"
"create-typescript-boilerplate": "bin/start"
},
"engines": {
"node": ">=18.17.0",
Expand Down

0 comments on commit 463e9ea

Please sign in to comment.