mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
#1681 Remove pkg builds
This commit is contained in:
37
.github/workflows/build-and-publish-release.yml
vendored
37
.github/workflows/build-and-publish-release.yml
vendored
@@ -1,37 +0,0 @@
|
|||||||
name: Build and Publish Release (Release)
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- release
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_and_publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Build and package with pkg
|
|
||||||
run: |
|
|
||||||
npm install -g pkg
|
|
||||||
npm run pkg
|
|
||||||
|
|
||||||
- name: Upload binaries to release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
files: dist/*
|
|
||||||
tag_name: ci-release
|
|
||||||
name: Continuous Release (Release)
|
|
||||||
prerelease: true
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
37
.github/workflows/build-and-publish-staging.yml
vendored
37
.github/workflows/build-and-publish-staging.yml
vendored
@@ -1,37 +0,0 @@
|
|||||||
name: Build and Publish Release (Staging)
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- staging
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_and_publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: 18
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Build and package with pkg
|
|
||||||
run: |
|
|
||||||
npm install -g pkg
|
|
||||||
npm run pkg
|
|
||||||
|
|
||||||
- name: Upload binaries to release
|
|
||||||
uses: softprops/action-gh-release@v1
|
|
||||||
with:
|
|
||||||
files: dist/*
|
|
||||||
tag_name: ci-staging
|
|
||||||
name: Continuous Release (Staging)
|
|
||||||
prerelease: true
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
1008
package-lock.json
generated
1008
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
21
package.json
21
package.json
@@ -55,11 +55,10 @@
|
|||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/SillyTavern/SillyTavern.git"
|
"url": "https://github.com/SillyTavern/SillyTavern.git"
|
||||||
},
|
},
|
||||||
"version": "1.11.3",
|
"version": "1.11.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server.js",
|
"start": "node server.js",
|
||||||
"start-multi": "node server.js --disableCsrf",
|
"start-multi": "node server.js --disableCsrf",
|
||||||
"pkg": "pkg --compress Gzip --no-bytecode --public .",
|
|
||||||
"postinstall": "node post-install.js",
|
"postinstall": "node post-install.js",
|
||||||
"lint": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js",
|
"lint": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js",
|
||||||
"lint-fix": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js --fix"
|
"lint-fix": "eslint \"src/**/*.js\" \"public/**/*.js\" ./*.js --fix"
|
||||||
@@ -72,24 +71,8 @@
|
|||||||
"no-var": "off"
|
"no-var": "off"
|
||||||
},
|
},
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"pkg": {
|
|
||||||
"targets": [
|
|
||||||
"node18-linux-x64",
|
|
||||||
"node18-macos-x64",
|
|
||||||
"node18-windows-x64"
|
|
||||||
],
|
|
||||||
"assets": [
|
|
||||||
"node_modules/**/*"
|
|
||||||
],
|
|
||||||
"outputPath": "dist",
|
|
||||||
"scripts": [
|
|
||||||
"server.js"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^8.55.0",
|
"eslint": "^8.55.0",
|
||||||
"jquery": "^3.6.4",
|
"jquery": "^3.6.4"
|
||||||
"pkg": "^5.8.1",
|
|
||||||
"pkg-fetch": "^3.5.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user