We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99dccf0 commit d0265e1Copy full SHA for d0265e1
.github/workflows/dotnet-core-desktop.yml
@@ -37,12 +37,12 @@ jobs:
37
uses: microsoft/setup-msbuild@2008f912f56e61277eefaac6d1888b750582aa16
38
39
- name: Build
40
- run: msbuild build.proj /p:PackageOutputDir="nuget-output" /p:Configuration=${{ matrix.configuration }}
+ run: msbuild build.proj /p:PackageOutputDir="${{ env.GITHUB_WORKSPACE }}/nuget-output" /p:Configuration=${{ matrix.configuration }}
41
env:
42
Configuration: ${{ matrix.configuration }}
43
44
- name: Upload build artifacts
45
uses: actions/upload-artifact@v1
46
with:
47
name: Nuget Package
48
- path: nuget-output
+ path: "${{ env.GITHUB_WORKSPACE }}/nuget-output"
0 commit comments