Skip to content

Commit

Permalink
Fix dotnet pack
Browse files Browse the repository at this point in the history
  • Loading branch information
Elanis authored Feb 27, 2023
1 parent 984b92a commit 0c4d911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: dotnet sonarscanner end /d:sonar.login="${{ env.SONAR_TOKEN }}"

- name: Pack
run: dotnet pack -c Release -o out
run: dotnet pack ${{ env.CSPROJ }} -c Release -o out
- name: Push
if: startsWith(github.event.ref, 'refs/tags/')
run: dotnet nuget push -s ${{ env.NUGET_SERVER_ADRESS }} -k ${{ env.NUGET_SERVER_KEY }} $(ls out/*.nupkg | head -1)
Expand Down

0 comments on commit 0c4d911

Please sign in to comment.