Skip to content

Commit

Permalink
Merge branch 'master' into suspend-workflow-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dgusev-dodo authored Feb 21, 2024
2 parents 63e8a38 + ec6ba04 commit 95ef147
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
run: dotnet build ${{ env.PROJECT_WORKFLOWCORE_DSL }} --configuration Release --no-restore

- name: Pack '${{ env.PKG_NAME_WORKFLOWCORE }}'
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} --no-build
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} -p:PackageVersion=${{ steps.extract_version.outputs.VERSION }} -p:AssemblyVersion=${{ steps.extract_version.outputs.VERSION }} -p:FileVersion=${{ steps.extract_version.outputs.VERSION }} --no-build

- name: Pack '${{ env.PKG_NAME_WORKFLOWCORE_MONGODB }}'
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE_MONGODB }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE_MONGODB }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} --no-build
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE_MONGODB }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE_MONGODB }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} -p:PackageVersion=${{ steps.extract_version.outputs.VERSION }} -p:AssemblyVersion=${{ steps.extract_version.outputs.VERSION }} -p:FileVersion=${{ steps.extract_version.outputs.VERSION }} --no-build

- name: Pack '${{ env.PKG_NAME_WORKFLOWCORE_DSL }}'
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE_DSL }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE_DSL }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} --no-build
run: dotnet pack ${{ env.PROJECT_WORKFLOWCORE_DSL }} --configuration Release --output ./artifacts/nuget/cvm.workflowcore -p:PackageId="Dodo.Cvm.${{ env.PKG_NAME_WORKFLOWCORE_DSL }}" -p:Version=${{ steps.extract_version.outputs.VERSION }} -p:PackageVersion=${{ steps.extract_version.outputs.VERSION }} -p:AssemblyVersion=${{ steps.extract_version.outputs.VERSION }} -p:FileVersion=${{ steps.extract_version.outputs.VERSION }} --no-build

- name: Push NuGet Packages
run: dotnet nuget push ./artifacts/nuget/cvm.workflowcore/*.nupkg --source ${{ secrets.NUGET_SOURCE }} --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate

0 comments on commit 95ef147

Please sign in to comment.