Skip to content

Commit

Permalink
Fix nuget creation for edifileloader
Browse files Browse the repository at this point in the history
  • Loading branch information
JoschaMetze committed Jul 22, 2024
1 parent 7eb9e5a commit af51e84
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,23 @@ jobs:
nuget setApiKey ${{ secrets.NUGET_ORG_PUSH_TOKEN }}
nuget push .\bin\Release\*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -NoSymbols
- name: Create Package EDIFileLoader.Core (dotnet pack)
working-directory: "EDILibraryBase"
run: dotnet pack EDIFileLoader.Core.csproj --configuration Release -p:PackageVersion="${{ steps.tagTBC.outputs.tag }}"
working-directory: "EDIFileLoader"
run: dotnet pack EDIFileLoader.csproj --configuration Release -p:PackageVersion="${{ steps.tagTBC.outputs.tag }}"
- name: Setup Nuget.exe
uses: warrenbuckley/Setup-Nuget@v1
- name: Nuget push EDIFileLoader.Core
working-directory: "EDILibraryBase"
working-directory: "EDIFileLoader"
# token: https://github.com/Hochfrequenz/EDILibrary/settings/secrets/actions/NUGET_ORG_PUSH_TOKEN
run: |
nuget setApiKey ${{ secrets.NUGET_ORG_PUSH_TOKEN }}
nuget push .\bin\Release\*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -NoSymbols
- name: Create Package EDIFileLoader.Standard (dotnet pack)
working-directory: "EDILibraryBase"
run: dotnet pack EDIFileLoader.Standard.csproj --configuration Release -p:PackageVersion="${{ steps.tagTBC.outputs.tag }}"
working-directory: "EDIFileLoader.Standard"
run: dotnet pack EDIFileLoader.Core.csproj --configuration Release -p:PackageVersion="${{ steps.tagTBC.outputs.tag }}"
- name: Setup Nuget.exe
uses: warrenbuckley/Setup-Nuget@v1
- name: Nuget push EDIFileLoader.Standard
working-directory: "EDILibraryBase"
working-directory: "EDIFileLoader.Standard"
# token: https://github.com/Hochfrequenz/EDILibrary/settings/secrets/actions/NUGET_ORG_PUSH_TOKEN
run: |
nuget setApiKey ${{ secrets.NUGET_ORG_PUSH_TOKEN }}
Expand Down

0 comments on commit af51e84

Please sign in to comment.