提问人:Zalizan Zolkipali 提问时间:10/17/2023 最后编辑:Zalizan Zolkipali 更新时间:10/17/2023 访问量:80
用于构建和部署 .NET Framework 4.8 的窗口的 Bitbucket 运行程序
Bitbucket runner for window to build and deploy .net framework 4.8
问:
目前,我对如何使用 bitbucket 管道构建和部署 .net framework 4.8 Web 应用程序感到困惑。我看到了一些使用 bitbucket runner for windows 的建议,但找不到任何教程来实现这一点。需要以前经历过这种情况的人的帮助,了解如何编写正确的 bitbucket-pipeline.yaml。
以下是我试图玩的当前 bitbucket-pipeline.yaml 文件
definitions:
steps:
- step: &build-deploy-stg
name: Build and Deploy
runs-on:
- 'stg'
- 'windows'
- 'self.hosted'
- 'kentico'
script:
- choco install nuget.commandline -y
- nuget restore
- msbuild /p:Configuration=Debug
artifacts:
- bin/Release/**
pipelines:
branches:
staging:
- step: *build-deploy-stg
但是当我运行这个管道时,我收到了以下错误
HttpResponseSummary{httpStatusCode=403, httpStatusMessage=Forbidden, bodyAsString={"error":{"message":"Forbidden","detail":"Could not find runner associated with oauth client.","data":{"key":"rest-service.rest-service.forbidden","arguments":{}}}}}
答: 暂无答案
评论