This commit is contained in:
pk5ls20
2024-11-20 19:51:29 +08:00
parent 50e207cf6f
commit 0b839258aa
3 changed files with 7 additions and 7 deletions

View File

@@ -18,8 +18,8 @@ jobs:
node-version: 20.x
- name: Build NapCat.Framework
run: |
npm i && cd napcat.webui && npm i && cd ..
npm run build:framework && npm run depend
npm i && cd napcat.webui && npm i && cd .. || exit 1
npm run build:framework && npm run depend || exit 1
rm package-lock.json
- name: Upload Artifact
uses: actions/upload-artifact@v4
@@ -37,8 +37,8 @@ jobs:
node-version: 20.x
- name: Build NapCat.Shell
run: |
npm i && cd napcat.webui && npm i && cd ..
npm run build:shell && npm run depend
npm i && cd napcat.webui && npm i && cd .. || exit 1
npm run build:shell && npm run depend || exit 1
rm package-lock.json
- name: Upload Artifact
uses: actions/upload-artifact@v4