File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ permissions:
2727jobs :
2828 all :
2929 if : github.run_id != 1
30- uses : dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.0.8
30+ uses : dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.1.10
3131 with :
3232 dotnetVersion : ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
3333 dotnetQuality : ${{ vars.NE_DOTNET_QUALITY }}
Original file line number Diff line number Diff line change 1+ name : NuGet Package
2+
3+ on :
4+ workflow_run :
5+ workflows : [CI]
6+ types : [completed]
7+ branches : [main]
8+
9+ permissions :
10+ actions : read
11+ contents : write
12+
13+ jobs :
14+ nuget :
15+ name : Publish
16+ if : ${{ github.event.workflow_run.conclusion == 'success' && github.actor != 'dependabot[bot]' }}
17+ uses :
dailydevops/pipelines/.github/workflows/[email protected] 18+ with :
19+ workflowName : ${{ github.event.workflow_run.name }}
20+ artifactPattern : release-packages-*
21+ environment : NuGet
22+ runId : ${{ github.event.workflow_run.id }}
23+ secrets : inherit
You can’t perform that action at this time.
0 commit comments