Skip to content

Commit e5f9e84

Browse files
Merge pull request #22 from IntelliTect/FixEnvironmentVariable
2 parents c7d2f2d + 429fe62 commit e5f9e84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
run: dotnet test --no-build --configuration Release --verbosity normal
4343
- name: Pack
4444
if: startsWith(github.ref, 'refs/tags/v')
45-
run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{env.DOTNET_ROOT}}/TestTools.ConsolePack --no-build
45+
run: dotnet pack -p:PackageVersion=${{ env.nugetVersion }} --configuration Release -o ${{github.workspace}}/TestTools.ConsolePack --no-build
4646
- name: Upload Artifacts
4747
if: startsWith(github.ref, 'refs/tags/v')
4848
uses: actions/upload-artifact@v3
4949
with:
5050
name: NuGet
51-
path: ${{env.DOTNET_ROOT}}/TestTools.ConsolePack
51+
path: ${{github.workspace}}/TestTools.ConsolePack
5252

5353
deploy:
5454
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)