Skip to content

Commit

Permalink
Update pack directory
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminMichaelis committed Oct 19, 2022
1 parent ab844e3 commit 89b4fdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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
files: IntelliTect.EssentialCSharp.ListingManager.${{ steps.tag-version.outputs.TAG_VERSION }}.nupkg

0 comments on commit 89b4fdc

Please sign in to comment.