Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
rfavreau committed Sep 4, 2022
1 parent d5e2de4 commit 01924fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ jobs:
- name: Pack
run: dotnet pack -c Release --no-build -o . /p:PackageID=${{ env.orgaName }}.${{ env.projectName }} /p:VersionPrefix=${{ needs.CI.outputs.majorMinorPatch }} /p:VersionSuffix=${{ needs.CI.outputs.preReleaseTag }}

- name: Push to NuGet
run: dotnet nuget push *.nupkg --skip-duplicate -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TEST }}

- name: Build Release
id: build_release
run: |
Expand Down Expand Up @@ -151,7 +154,4 @@ jobs:
asset_path: ./${{ env.orgaName }}.${{ env.projectName }}.${{ needs.CI.outputs.semVer }}.nupkg
asset_name: ${{ env.orgaName }}.${{ env.projectName }}.${{ needs.CI.outputs.semVer }}.nupkg
asset_content_type: application/zip

- name: Push to NuGet
run: dotnet nuget push *.nupkg --skip-duplicate -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_TEST }}


0 comments on commit 01924fa

Please sign in to comment.