我已经成功设置了一个 GitHub 操作来构建和打包我的多目标 NuGet 包。
name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.5.0
with:
dotnet-version: 3.1.301
# Authenticates packages to push to GPR
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
env:
NUGET_AUTH_TOKEN: '%NUGET_AUTH_TOKEN%'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.1
- name: Install dependencies
run: msbuild /t:Restore
env:
NUGET_AUTH_TOKEN: ${{ github.token }}
- name: Build
run: msbuild /t:Pack /p:Configuration=Debug Library/MintPlayer.MVVM/MintPlayer.MVVM.csproj
- name: Copy
run: copy Library/MintPlayer.MVVM/bin/Debug/*.nupkg .
- name: PushNuget
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.PUBLISH_TO_NUGET_ORG }} --skip-duplicate
- name: PushGithub
run: dotnet nuget push *.nupkg --no-symbols --skip-duplicate
env:
NUGET_AUTH_TOKEN: ${{ github.token }}
由于这是一个 Xamarin.Forms 包,我需要使用 MSBuild SDK。
restore、build和pack命令运行良好。我不能将p:OutputPath
参数用于多目标 nuget 包(可以在此处跟踪问题)。这就是为什么我有一个步骤来构建,并将文件复制到%cd%
.
向 nuget.org 的推送按预期工作,但向我的 github 提要推送失败,结果如下:
我无法找出这里出了什么问题。有谁知道为什么推送到 GitHub 失败了?
这里还有一个成功推送到 GPR 的示例,因此有关未提供 API 密钥的警告不是问题的原因: