mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
fix workflow
This commit is contained in:
parent
fb62acd9e3
commit
75f2c35b16
2 changed files with 2 additions and 0 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -25,6 +25,7 @@ jobs:
|
||||||
# GitHub token, automatically provided to the action
|
# GitHub token, automatically provided to the action
|
||||||
# (No need to define this secret in the repo settings)
|
# (No need to define this secret in the repo settings)
|
||||||
github_token: ${{ secrets.github_token }}
|
github_token: ${{ secrets.github_token }}
|
||||||
|
build_script_name: 'ci'
|
||||||
# skip npm run build as there's no script like that
|
# skip npm run build as there's no script like that
|
||||||
skip_build: true
|
skip_build: true
|
||||||
# If the commit is tagged with a version (e.g. "v1.0.0"),
|
# If the commit is tagged with a version (e.g. "v1.0.0"),
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"watch": "tsc -w",
|
"watch": "tsc -w",
|
||||||
|
"ci": "npm run build && npm run copy-files",
|
||||||
"start": "npm run build && npm run copy-files && electron ./ts-out/main.js",
|
"start": "npm run build && npm run copy-files && electron ./ts-out/main.js",
|
||||||
"package": "npm run build && npm run copy-files && electron-builder",
|
"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/"
|
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/** ts-out/"
|
||||||
|
|
Loading…
Reference in a new issue