我有一个带有 react js 模板的 ASP.NET 5 应用程序。我将它部署在带有 Windows Server 2019 的 VPC 上。我决定将 github 自托管运行器用于 ci/cd 管道。一切正常,我按照 github 的教程创建了跑步者。它检查了存储库,执行了“dotnet restore”,但“dotnet build”命令没有结束。它无限循环。
这是我的工作流程文件。
name: Name
on:
push:
branches: [ develop ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Setup Node.js environment
uses: actions/setup-node@v2.5.1
with:
node-version: 16.13.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
这是该步骤的最后一个日志的屏幕截图。
这是我服务器的PowerShell。