Skip to content

Commit

Permalink
fix(dotnet): dotnet pack command without suffix failed
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbriere1 committed Nov 14, 2024
1 parent 411b97e commit d7dc944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ jobs:
path: code-coverage-results.md

- name: Create Package
if: !inputs.solution_version_suffix
if: ${{ !inputs.solution_version_suffix }}
run: >-
dotnet pack ${{ inputs.solution_name }}
--configuration ${{ inputs.solution_configuration }}
--output packages
- name: Create Package with Suffix
if: inputs.solution_version_suffix
if: ${{ inputs.solution_version_suffix }}
run: >-
dotnet pack ${{ inputs.solution_name }}
--configuration ${{ inputs.solution_configuration }}
Expand Down

0 comments on commit d7dc944

Please sign in to comment.