fix workflow

This commit is contained in:
smartfrigde 2022-01-15 22:28:39 +01:00
parent fb62acd9e3
commit 75f2c35b16
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ jobs:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
build_script_name: 'ci'
# skip npm run build as there's no script like that
skip_build: true
# If the commit is tagged with a version (e.g. "v1.0.0"),

View File

@ -6,6 +6,7 @@
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"ci": "npm run build && npm run copy-files",
"start": "npm run build && npm run copy-files && electron ./ts-out/main.js",
"package": "npm run build && npm run copy-files && electron-builder",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/** ts-out/"