From d02b45c6d5505c789caa3c626f77bd10116ed593 Mon Sep 17 00:00:00 2001 From: Simon G Date: Tue, 24 Sep 2019 14:50:12 +0200 Subject: [PATCH] - try without any jobs --- .github/workflows/deploy.yml | 48 ++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 870ce6a..c98a5ee 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,30 +2,30 @@ name: Deploy on: [release] -jobs: - nuget: - name: NuGet - runs-on: windows-latest +#jobs: +# nuget: +# name: NuGet +# runs-on: windows-latest - steps: - - name: Deploy to NuGet Gallery - env: - NUGET_KEY: ${{ secrets.NUGET_KEY }} - run: - dotnet pack -c Release - cd bin\Release - dotnet nuget push LightweightIocContainer.*.nupkg -k NUGET_KEY -s https://api.nuget.org/v3/index.json +# steps: +# - name: Deploy to NuGet Gallery +# env: +# NUGET_KEY: ${{ secrets.NUGET_KEY }} +# run: +# dotnet pack -c Release +# cd bin\Release +# dotnet nuget push LightweightIocContainer.*.nupkg -k NUGET_KEY -s https://api.nuget.org/v3/index.json - github: - name: GitHub - runs-on: windows-latest +# github: +# name: GitHub +# runs-on: windows-latest - steps: - - name: Deploy to GitHub Package Registry - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: - dotnet pack -c Release - nuget sources Add -Name "GithubPackageRegistry" -Source "https://nuget.pkg.github.com/OWNER/index.json" -UserName SimonG96 -Password GITHUB_TOKEN - cd bin\Release - dotnet nuget push LightweightIocContainer.*.nupkg -Source "GithubPackageRegistry" +# steps: +# - name: Deploy to GitHub Package Registry +# env: +# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +# run: +# dotnet pack -c Release +# nuget sources Add -Name "GithubPackageRegistry" -Source "https://nuget.pkg.github.com/OWNER/index.json" -UserName SimonG96 -Password GITHUB_TOKEN +# cd bin\Release +# dotnet nuget push LightweightIocContainer.*.nupkg -Source "GithubPackageRegistry"