2025-02-24 20:27:01 +08:00
|
|
|
name: Backend_develop # 工作流的名称
|
|
|
|
|
2025-02-24 20:42:35 +08:00
|
|
|
# 当有代码推送到仓库的 develop 分支时,这个 Actions 工作流会被触发并执行
|
2025-02-24 20:27:01 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: "backend_runner"
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
|
|
shell: powershell
|
|
|
|
run: |
|
|
|
|
echo "Git clone_start"
|
|
|
|
cd D:\Code\Project\TCM
|
|
|
|
if (Test-Path "Backend") { Remove-Item -Recurse -Force "Backend" } # 刪除原資料
|
|
|
|
if (-not (Test-Path "Backend")) {New-Item -Path "Backend" -ItemType Directory -Force} # 建立資料夾
|
|
|
|
echo " Cloneing ..."
|
|
|
|
git clone -b develop http://leovip125.ddns.net:8418/TCM/Backend.git
|
|
|
|
echo "Clone End"
|
2025-02-24 20:42:35 +08:00
|
|
|
# NET 發布
|
2025-02-24 20:44:57 +08:00
|
|
|
cd Backend
|
2025-02-24 20:42:35 +08:00
|
|
|
dotnet restore
|
|
|
|
dotnet build
|
|
|
|
cd D:\Code\Server\TCM
|
|
|
|
if (Test-Path "API") { Remove-Item -Recurse -Force "API" } # 刪除原資料
|
|
|
|
if (-not (Test-Path "API")) {New-Item -Path "API" -ItemType Directory -Force} # 建立資料夾
|
|
|
|
dotnet publish -c Release -o D:\Code\Server\TCM\API
|
|
|
|
|