Update my.sample.lib.csproj #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup NuGet.exe for use with actions | |
uses: NuGet/[email protected] | |
- name: Add GPR Source using nuget.exe | |
run: nuget sources add -name "GPR" -Source https://nuget.pkg.github.com/anangaur/index.json -Username anangaur -Password ${{ secrets.GITHUB_TOKEN }} | |
- name: dotnet build | |
run: dotnet build | |
- name: nuget push | |
run: nuget push my.sample.lib\**\*.nupkg -source "GPR" -SkipDuplicate | |