Skip to content

Update my.sample.lib.csproj #37

Update my.sample.lib.csproj

Update my.sample.lib.csproj #37

Workflow file for this run

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