We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f02ba5 commit 37ad4deCopy full SHA for 37ad4de
.github/workflows/publish-nuget-package.yml
@@ -10,9 +10,6 @@ jobs:
10
build:
11
12
runs-on: ubuntu-latest
13
-
14
- env:
15
- DOTNET_PROJECT_DIR: ${{ env.DOTNET_PROJECT_DIR }}
16
17
steps:
18
- uses: actions/checkout@v2
@@ -24,9 +21,9 @@ jobs:
24
21
run: dotnet restore
25
22
- name: Pack
26
23
run: |
27
- cd $DOTNET_PROJECT_DIR
+ cd StandardLibrary
28
dotnet pack -c Release -o out
29
- name: Publish
30
env:
31
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
32
- run: dotnet nuget push ./$DOTNET_PROJECT_DIR/out/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
+ run: dotnet nuget push ./StandardLibrary/out/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json
0 commit comments