Skip to content

Commit

Permalink
feat(ci): never publish
Browse files Browse the repository at this point in the history
  • Loading branch information
gorillamoe committed Nov 16, 2024
1 parent c611e38 commit d2384ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:windows": "npm run build && electron-builder --win",
"build:macos": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
"build:windows": "npm run build && electron-builder --win --publish never",
"build:macos": "npm run build && electron-builder --mac --publish never",
"build:linux": "npm run build && electron-builder --linux --publish never"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WINDOWS_FILES=(
)

MACOS_FILES=(
"dist/${BIN_NAME}_x64.dmg"
"dist/${BIN_NAME}_arm64.dmg"
)

set_release_action() {
Expand Down

0 comments on commit d2384ec

Please sign in to comment.