Skip to content

Commit 23713b4

Browse files
chore(ci): bump dailydevops/pipelines from 1.0.8 to 1.1.10 (#8)
* chore(ci): bump dailydevops/pipelines from 1.0.8 to 1.1.10 Bumps [dailydevops/pipelines](https://github.com/dailydevops/pipelines) from 1.0.8 to 1.1.10. - [Release notes](https://github.com/dailydevops/pipelines/releases) - [Commits](dailydevops/pipelines@1.0.8...1.1.10) --- updated-dependencies: - dependency-name: dailydevops/pipelines dependency-version: 1.1.10 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * chore: Added Publish NuGet pipeline --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Stühmer <[email protected]>
1 parent f6dcff4 commit 23713b4

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ permissions:
2727
jobs:
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 }}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

0 commit comments

Comments
 (0)