diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 74c31c2..9e975e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,8 @@ 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 + skip_build: false # If the commit is tagged with a version (e.g. "v1.0.0"), # release the app after building release: ${{ startsWith(github.ref, 'refs/tags/v') }} #disabled for now as it caused problems (nvm) diff --git a/package.json b/package.json index 09d36d1..90749ae 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,14 @@ { "name": "ArmCord", - "version": "3.0.0", + "version": "2.9.9", "description": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.", "main": "ts-out/main.js", "scripts": { - "build": "tsc", + "build": "tsc && copyfiles -u 1 src/**/*.html src/**/*.css ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/** ts-out/", "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/" + "start": "npm run build && electron ./ts-out/main.js", + "package": "npm run build && electron-builder" + }, "repository": { "type": "git",