CI/CD: modify workflow
This commit is contained in:
parent
0952a40997
commit
b2da2ffc4f
3 changed files with 11 additions and 49 deletions
21
.github/workflows/build.yaml
vendored
21
.github/workflows/build.yaml
vendored
|
@ -1,8 +1,6 @@
|
||||||
name: buildProject
|
name: buildProject
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- "main"
|
|
||||||
tags:
|
tags:
|
||||||
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
|
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||||
|
|
||||||
|
@ -15,7 +13,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Use NodeJs
|
- name: Setup NodeJs
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 22.x
|
node-version: 22.x
|
||||||
|
@ -25,22 +23,23 @@ jobs:
|
||||||
dotnet-version: 8.0.x
|
dotnet-version: 8.0.x
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
|
mkdir release
|
||||||
|
mkdir release/LocalServer/wwwroot
|
||||||
|
mkdir release/RemoteServer
|
||||||
|
mkdir release/JsScript
|
||||||
cd Tool/webtool
|
cd Tool/webtool
|
||||||
npm install
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
cd ../../Server
|
cd ../../Server
|
||||||
dotnet restore
|
dotnet restore
|
||||||
cd LocalServer
|
cd LocalServer
|
||||||
dotnet publish --no-restore
|
dotnet publish -o ../../release/Localserver --no-restore
|
||||||
cd ../RemoteServer
|
cd ../RemoteServer
|
||||||
dotnet publish --no-restore
|
dotnet publish -o ../../release/RemoteServer --no-restore
|
||||||
cd ../../
|
cd ../../
|
||||||
- name: Package
|
- name: Package
|
||||||
run: |
|
run: |
|
||||||
mkdir release
|
cp Tool/JsScript/* release/JsScript/
|
||||||
mv -Path "Server/LocalServer/bin/Release/net8.0/publish/*" -Destination "release/LocalServer"
|
|
||||||
mv -Path "Server/RemoteServer/bin/Release/net8.0/publish/*" -Destination "release/RemoteServer"
|
|
||||||
cp Tool/JsScript/* release/JsScript
|
|
||||||
Compress-Archive -Path "release/*" -DestinationPath "FS_win_dotnet8.zip" -Force
|
Compress-Archive -Path "release/*" -DestinationPath "FS_win_dotnet8.zip" -Force
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
|
@ -49,6 +48,6 @@ jobs:
|
||||||
files: |
|
files: |
|
||||||
FS_win_dotnet8.zip
|
FS_win_dotnet8.zip
|
||||||
LICENSE
|
LICENSE
|
||||||
name: Release ${{ github.ref }}
|
name: ${{ github.ref }}
|
||||||
draft: true
|
draft: false
|
||||||
prerelease: true
|
prerelease: true
|
||||||
|
|
|
@ -1,37 +0,0 @@
|
||||||
// import WebSocket from 'ws';
|
|
||||||
|
|
||||||
// const wsUrl = 'wss://toolin.cn/echo';
|
|
||||||
// const ws = new WebSocket(wsUrl);
|
|
||||||
|
|
||||||
// ws.on('open', () => {
|
|
||||||
// console.log('Connected to WebSocket server');
|
|
||||||
// ws.send("赵磊f",(err)=>{
|
|
||||||
// console.log(err)
|
|
||||||
// })
|
|
||||||
|
|
||||||
// });
|
|
||||||
|
|
||||||
// ws.on('message', (message) => {
|
|
||||||
// var str = message.toString('utf8')
|
|
||||||
// if(str.includes("赵磊f")) {
|
|
||||||
// ws.close()
|
|
||||||
// }
|
|
||||||
// console.log('Received message:',str);
|
|
||||||
// });
|
|
||||||
|
|
||||||
// ws.on('close', () => {
|
|
||||||
// console.log('Disconnected from WebSocket server');
|
|
||||||
// });
|
|
||||||
|
|
||||||
import chalk from 'chalk';
|
|
||||||
function logProgress(current, total) {
|
|
||||||
const progressPercentage = (current / total) * 100;
|
|
||||||
var str = `Progress: ${progressPercentage.toFixed(2)}%\r`
|
|
||||||
var x = chalk['red'](str);
|
|
||||||
process.stdout.write(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Example usage:
|
|
||||||
setInterval(() => {
|
|
||||||
logProgress(Math.floor(Math.random() * 100), 100);
|
|
||||||
}, 100); // Update progress every 100 milliseconds with a random value
|
|
|
@ -5,7 +5,7 @@
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build --outDir ../../Server/LocalServer/wwwroot/",
|
"build": "vite build --outDir ../../release/LocalServer/wwwroot/",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in a new issue