Skip to content

Commit

Permalink
Fix CLI build (#2745)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ authored Dec 18, 2024
1 parent 447008c commit 3be8b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cli-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:

- name: Package CLI 8
if: startsWith(github.ref, 'refs/heads/master')
run: dotnet pack src\Core\efcpt.8\efcpt.8.csproj --no-build -p:PackageVersion=8.1.${{ env.VERSION }}-nightly -p:InformationalVersion=8.1.${{ env.VERSION }}-nightly
run: dotnet pack src\Core\efcpt.8\efcpt.8.csproj -p:PackageVersion=8.1.${{ env.VERSION }}-nightly -p:InformationalVersion=8.1.${{ env.VERSION }}-nightly

- name: Package CLI 9
if: startsWith(github.ref, 'refs/heads/master')
run: dotnet pack src\Core\efcpt.9\efcpt.9.csproj --no-build -p:PackageVersion=9.1.${{ env.VERSION }}-nightly -p:InformationalVersion=9.1.${{ env.VERSION }}-nightly
run: dotnet pack src\Core\efcpt.9\efcpt.9.csproj -p:PackageVersion=9.1.${{ env.VERSION }}-nightly -p:InformationalVersion=9.1.${{ env.VERSION }}-nightly

- name: Core test project
run: dotnet test src\Core\NUnitTestCore\NUnitTestCore.csproj
Expand Down

0 comments on commit 3be8b83

Please sign in to comment.