Fixed typo in package action

This commit is contained in:
Tony Bark 2020-12-08 22:01:10 -05:00
parent dd146f0a5f
commit 046fb24b20
2 changed files with 2 additions and 3 deletions

View file

@ -8,11 +8,10 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ["3.1.404", "5.0.101"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2

View file

@ -20,6 +20,6 @@ jobs:
run: dotnet pack --no-restore -o .
- name: Publish
env:
NUGET_KEY: ${{ secrets.GH_PKG_KEY }
NUGET_KEY: ${{ secrets.GH_PKG_KEY }}
NUGET_API: https://nuget.pkg.github.com/tonytins/index.json
run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API