mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-22 08:22:18 +00:00
Fixed typo in package action
This commit is contained in:
parent
dd146f0a5f
commit
046fb24b20
2 changed files with 2 additions and 3 deletions
3
.github/workflows/dotnet.yml
vendored
3
.github/workflows/dotnet.yml
vendored
|
@ -8,11 +8,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
dotnet: ["3.1.404", "5.0.101"]
|
dotnet: ["3.1.404", "5.0.101"]
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
2
.github/workflows/pkg_release.yml
vendored
2
.github/workflows/pkg_release.yml
vendored
|
@ -20,6 +20,6 @@ jobs:
|
||||||
run: dotnet pack --no-restore -o .
|
run: dotnet pack --no-restore -o .
|
||||||
- name: Publish
|
- name: Publish
|
||||||
env:
|
env:
|
||||||
NUGET_KEY: ${{ secrets.GH_PKG_KEY }
|
NUGET_KEY: ${{ secrets.GH_PKG_KEY }}
|
||||||
NUGET_API: https://nuget.pkg.github.com/tonytins/index.json
|
NUGET_API: https://nuget.pkg.github.com/tonytins/index.json
|
||||||
run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API
|
run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API
|
||||||
|
|
Loading…
Add table
Reference in a new issue