fix: publish

This commit is contained in:
Artemy 2023-06-21 13:42:27 +03:00
parent b0309a0a43
commit bff72b3ff8
2 changed files with 9 additions and 5 deletions

View file

@ -38,5 +38,6 @@ appImage:
artifactName: ${name}-${version}.${ext} artifactName: ${name}-${version}.${ext}
npmRebuild: false npmRebuild: false
publish: publish:
provider: generic provider: github
url: https://example.com/auto-updates owner: artegoser
repo: pimi-launcher

View file

@ -1,10 +1,14 @@
{ {
"name": "pimi-launcher", "name": "pimi-launcher",
"version": "1.1.0-alpha", "version": "1.1.1-alpha",
"description": "Modern Minecraft Launcher", "description": "Modern Minecraft Launcher",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "artegoser", "author": "artegoser",
"homepage": "https://github.com/artegoser/pimi-launcher", "homepage": "https://github.com/artegoser/pimi-launcher",
"repository": {
"type": "git",
"url": "https://github.com/artegoser/pimi-launcher.git"
},
"scripts": { "scripts": {
"format": "prettier --write .", "format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix", "lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
@ -13,8 +17,7 @@
"build": "electron-vite build", "build": "electron-vite build",
"postinstall": "electron-builder install-app-deps", "postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config", "build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config", "publish": "electron-builder --win -p always"
"build:linux": "npm run build && electron-builder --linux --config"
}, },
"dependencies": { "dependencies": {
"@electron-toolkit/preload": "^2.0.0", "@electron-toolkit/preload": "^2.0.0",