Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
FlurinBruehwiler committed Jul 16, 2023
1 parent fd6cc54 commit a026758
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Pack TolggeUI.SourceGenerators
run: dotnet pack ./TolggeUI.SourceGenerators --configuration Release
- name: Push TolggeUI
run: dotnet nuget push "/TolggeUI/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
run: dotnet nuget push "./TolggeUI/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Push TolggeUI.Components
run: dotnet nuget push "/TolggeUI.Components/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
run: dotnet nuget push "./TolggeUI.Components/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
- name: Push TolggeUI.SourceGenerators
run: dotnet nuget push "/TolggeUI.SourceGenerators/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate
run: dotnet nuget push "./TolggeUI.SourceGenerators/bin/Release/*.nupkg" --api-key ${{secrets.NUGET_ORG_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate

0 comments on commit a026758

Please sign in to comment.