:1 test ci
Some checks failed
TDevOPsCICD / build-image (push) Failing after 1m22s

This commit is contained in:
cheney 2025-10-22 14:39:24 +08:00
parent 0ca130f8e8
commit 9c62274108
2 changed files with 8 additions and 4 deletions

View File

@ -10,4 +10,8 @@ jobs:
- name: Build Binary
run: |
echo ${{ github.ref_name }} ${{ github.sha }}
bun
bun -v
cd kit
kit i
kit run windows
kit run linux

View File

@ -3,10 +3,10 @@
"version": "0.1",
"bin": "src/index.js",
"scripts": {
"linux": "bun build ./src/index.js --compile --bytecode --minify --target=bun-linux-x64-baseline --outfile=./dist/linux/kit",
"redhat": "bun build ./src/index.js --compile --bytecode --minify --target=bun-linux-x64-baseline --outfile=./dist/linux/kit",
"alpine": "pkg --compress GZip . -t node14-alpine-arm64 -o ./dist/alpine/kit",
"windows": "pkg --compress GZip . -t win -o ./dist/windows/kit.exe",
"alpine": "pkg --compress GZip . -t node14-alpine-arm64 -o ./dist/linux/kit",
"centos": "pkg --compress GZip . -t node14-linux-arm64 -o ./dist/linux/kit"
"linux": "pkg --compress GZip . -t node14-linux-arm64 -o ./dist/linux/kit"
},
"dependencies": {
"auto-launch": "^5.0.6",