diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f5dc0de..23c426f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -42,13 +42,13 @@ jobs: run: dotnet test --no-build --configuration Release --verbosity normal - name: Pack if: startsWith(github.ref, 'refs/tags/v') - run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{env.DOTNET_ROOT}}/IntelliTect.ListingManagerPack --no-build + run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{github.workspace}}\IntelliTect.ListingManagerPack --no-build - name: Upload Artifacts if: startsWith(github.ref, 'refs/tags/v') uses: actions/upload-artifact@v3 with: name: NuGet - path: ${{env.DOTNET_ROOT}}/IntelliTect.ListingManagerPack + path: ${{github.workspace}}/IntelliTect.ListingManagerPack deploy: if: startsWith(github.ref, 'refs/tags/v') @@ -73,4 +73,4 @@ jobs: with: fail_on_unmatched_files: true generate_release_notes: true - files: IntelliTect.EssentialCSharp.ListingManager.${{ steps.tag-version.outputs.TAG_VERSION }}.nupkg \ No newline at end of file + files: IntelliTect.EssentialCSharp.ListingManager.${{ steps.tag-version.outputs.TAG_VERSION }}.nupkg