diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index de04248..99a8ade 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -10,4 +10,8 @@ jobs: - name: Build Binary run: | echo ${{ github.ref_name }} ${{ github.sha }} - bun \ No newline at end of file + bun -v + cd kit + kit i + kit run windows + kit run linux diff --git a/kit/package.json b/kit/package.json index 8b636b2..1fa3ac1 100644 --- a/kit/package.json +++ b/kit/package.json @@ -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",