Simon Gockner 6 years ago
commit 08c3880b77
  1. 19
      .github/workflows/deploy.yml

@ -3,15 +3,17 @@ name: Deploy
on: [release] on: [release]
jobs: jobs:
# nuget: nuget:
# name: NuGet name: NuGet
# runs-on: windows-latest runs-on: windows-latest
# steps: steps:
# - name: Deploy to NuGet Gallery - name: Checkout
uses: actions/checkout@v1
- name: Deploy to NuGet Gallery
# env: # env:
# NUGET_KEY: ${{ secrets.NUGET_KEY }} # NUGET_KEY: ${{ secrets.NUGET_KEY }}
# run: run: echo Test NuGet
# dotnet pack -c Release # dotnet pack -c Release
# cd bin\Release # cd bin\Release
# dotnet nuget push LightweightIocContainer.*.nupkg -k NUGET_KEY -s https://api.nuget.org/v3/index.json # dotnet nuget push LightweightIocContainer.*.nupkg -k NUGET_KEY -s https://api.nuget.org/v3/index.json
@ -21,10 +23,13 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout
uses: actions/checkout@v1
- name: Deploy to GitHub Package Registry - name: Deploy to GitHub Package Registry
# env: # env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: dotnet pack -c Release run: echo Test GitHub
# dotnet pack -c Release
# nuget sources Add -Name "GithubPackageRegistry" -Source "https://nuget.pkg.github.com/SimonG96/index.json" -UserName SimonG96 -Password GITHUB_TOKEN # nuget sources Add -Name "GithubPackageRegistry" -Source "https://nuget.pkg.github.com/SimonG96/index.json" -UserName SimonG96 -Password GITHUB_TOKEN
# cd bin\Release # cd bin\Release
# dotnet nuget push LightweightIocContainer.*.nupkg -Source "GithubPackageRegistry" # dotnet nuget push LightweightIocContainer.*.nupkg -Source "GithubPackageRegistry"

Loading…
Cancel
Save