Skip to content

Commit 749957c

Browse files
committed
fix: publish error to npm
1 parent 7f857be commit 749957c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
with:
3030
node-version: '20'
3131
registry-url: 'https://registry.npmjs.org'
32-
token: ${{ secrets.NPM_TOKEN }}
3332

3433
- name: Install dependencies
3534
run: bun install --frozen-lockfile
@@ -59,6 +58,8 @@ jobs:
5958
6059
- name: Publish to npm
6160
run: npm publish --provenance --access public
61+
env:
62+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6263

6364
- name: Create GitHub Release
6465
uses: softprops/action-gh-release@v2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tukuyomil032/broom",
33
"private": false,
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"description": "🧹 macOS Disk Cleanup CLI - Clean up caches, logs, trash, browser data, dev artifacts, and more",
66
"type": "module",
77
"main": "./dist/index.js",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
import { enableDebug, debug } from './utils/debug.js';
3434
import { getGlobalOptionsTable } from './utils/help.js';
3535

36-
const VERSION = '1.0.3';
36+
const VERSION = '1.0.5';
3737

3838
// ASCII art logo
3939
const logo = chalk.cyan(`

0 commit comments

Comments
 (0)