Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterOrneholm committed Apr 10, 2024
1 parent c2d60e8 commit 7fc4aef
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,12 @@ jobs:

- name: Test
run: dotnet test ${{ env.testProjectPath }} --configuration Release --verbosity ${{ env.dotnetVerbosity }} --collect "Code coverage"
shell: bash

- name: Pack CI
run: dotnet pack ${{ env.libraryProjectPath }} --output ./artifacts/ci --configuration Release --verbosity ${{ env.dotnetVerbosity }} /p:VersionSuffix=ci-${{ github.run_number }}
shell: bash
run: dotnet pack '${{ env.libraryProjectPath }}' --output ./artifacts/ci --configuration Release --verbosity ${{ env.dotnetVerbosity }} /p:VersionSuffix=ci-${{ github.run_number }}

- name: Pack Release
run: dotnet pack ${{ env.libraryProjectPath }} --output ./artifacts/release --configuration Release --verbosity ${{ env.dotnetVerbosity }}
shell: bash

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 7fc4aef

Please sign in to comment.