Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigobelo authored Jul 16, 2021
1 parent 0dfabc5 commit 3a9cff5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
dotnet-version: 3.1.x

- name: Pack KafkaFlow.Retry
run: dotnet pack src/KafkaFlow.Retry/KafkaFlow.Retry.csproj --no-build -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}
run: dotnet pack src/KafkaFlow.Retry/KafkaFlow.Retry.csproj -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}

- name: Pack KafkaFlow.Retry.API
run: dotnet pack src/KafkaFlow.Retry.API/KafkaFlow.Retry.API.csproj --no-build -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}
run: dotnet pack src/KafkaFlow.Retry.API/KafkaFlow.Retry.API.csproj -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}

- name: Pack KafkaFlow.Retry.SqlServer
run: dotnet pack src/KafkaFlow.Retry.SqlServer/KafkaFlow.Retry.SqlServer.csproj --no-build -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}
run: dotnet pack src/KafkaFlow.Retry.SqlServer/KafkaFlow.Retry.SqlServer.csproj -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}

- name: Pack KafkaFlow.Retry.MongoDb
run: dotnet pack src/KafkaFlow.Retry.MongoDb/KafkaFlow.Retry.MongoDb.csproj --no-build -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}
run: dotnet pack src/KafkaFlow.Retry.MongoDb/KafkaFlow.Retry.MongoDb.csproj -c Release --include-symbols /p:Version=${{ github.event.release.tag_name }}

- name: Publish
run: dotnet nuget push ./**/*.nupkg -k ${{ secrets.NUGET_PUBLISH_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
Expand Down

0 comments on commit 3a9cff5

Please sign in to comment.