diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index 7e6e040..d05be1b 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -26,5 +26,5 @@ jobs: dotnet pack --no-restore --version-suffix $(date "+%Y.%m%d-beta%H%M") -c Release -o out NewLife.Holiday/NewLife.Holiday.csproj - name: Publish run: | - dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ secrets.githubKey }} + # dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ secrets.githubKey }} dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nugetKey }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a49cb04..1dd5933 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,5 +24,5 @@ jobs: dotnet pack --no-restore --version-suffix $(date "+%Y.%m%d") -c Release -o out NewLife.Holiday/NewLife.Holiday.csproj - name: Publish run: | - dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ secrets.githubKey }} + # dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://nuget.pkg.github.com/NewLifeX/index.json --api-key ${{ secrets.githubKey }} dotnet nuget push ./out/*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nugetKey }}