From ce98abc51b151993bedeab406b8d998454b6cddd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Aug 2025 09:10:18 +0000 Subject: [PATCH 1/2] 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](https://github.com/dailydevops/pipelines/compare/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] --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index d5df7bc..0b43c64 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -27,7 +27,7 @@ permissions: jobs: all: if: github.run_id != 1 - uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.0.8 + uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.1.10 with: dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }} dotnetQuality: ${{ vars.NE_DOTNET_QUALITY }} From 9f5dd79848ff137b97790ef0024360cb29ae0108 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20St=C3=BChmer?= Date: Fri, 22 Aug 2025 12:35:09 +0200 Subject: [PATCH 2/2] chore: Added Publish NuGet pipeline --- .github/workflows/publish-nuget.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/publish-nuget.yml diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml new file mode 100644 index 0000000..135fbd6 --- /dev/null +++ b/.github/workflows/publish-nuget.yml @@ -0,0 +1,23 @@ +name: NuGet Package + +on: + workflow_run: + workflows: [CI] + types: [completed] + branches: [main] + +permissions: + actions: read + contents: write + +jobs: + nuget: + name: Publish + if: ${{ github.event.workflow_run.conclusion == 'success' && github.actor != 'dependabot[bot]' }} + uses: dailydevops/pipelines/.github/workflows/publish-nuget.yml@1.1.10 + with: + workflowName: ${{ github.event.workflow_run.name }} + artifactPattern: release-packages-* + environment: NuGet + runId: ${{ github.event.workflow_run.id }} + secrets: inherit