Skip to content

Commit 365b49e

Browse files
chore(ci): bump dailydevops/pipelines from 0.14.110 to 1.2.0 (#285)
* chore(ci): bump dailydevops/pipelines from 0.14.110 to 1.2.0 Bumps [dailydevops/pipelines](https://github.com/dailydevops/pipelines) from 0.14.110 to 1.2.0. - [Release notes](https://github.com/dailydevops/pipelines/releases) - [Commits](dailydevops/pipelines@0.14.110...1.2.0) --- updated-dependencies: - dependency-name: dailydevops/pipelines dependency-version: 1.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore(solution): Switched to slnx Solution and updated pipelines --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Stühmer <me@samtrion.net>
1 parent b64f330 commit 365b49e

5 files changed

Lines changed: 53 additions & 65 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ on:
2020

2121
jobs:
2222
all:
23+
if: github.run_id != 1
2324
name: Build & Tests
24-
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.110
25+
uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.1.28
2526
with:
26-
enableSonarQube: true
27-
dotnet-logging: ${{ inputs.dotnet-logging }}
28-
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
29-
dotnet-quality: ga
30-
solution: ./Extensions.Strings.sln
27+
dotnetLogging: ${{ inputs.dotnet-logging }}
28+
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
29+
solution: ./Extensions.Strings.slnx
3130
secrets: inherit
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/publish-nuget.yml@1.1.28
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

Directory.Packages.props

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@
1111
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
1212
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.80" />
1313
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
14-
<GlobalPackageReference
15-
Include="SonarAnalyzer.CSharp"
16-
Version="10.6.0.109712"
17-
Condition=" '$(BuildingInsideVisualStudio)' == 'true' "
18-
/>
14+
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.6.0.109712" />
1915
</ItemGroup>
2016
<ItemGroup>
2117
<PackageVersion Include="coverlet.collector" Version="6.0.4" />

Extensions.Strings.sln

Lines changed: 0 additions & 54 deletions
This file was deleted.

Extensions.Strings.slnx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Solution>
2+
<Folder Name="/Solution Items/">
3+
<File Path=".csharpierignore" />
4+
<File Path=".editorconfig" />
5+
<File Path=".filenesting.json" />
6+
<File Path=".gitignore" />
7+
<File Path=".gitmodules" />
8+
<File Path="Directory.Build.props" />
9+
<File Path="Directory.Packages.props" />
10+
<File Path="Directory.Solution.props" />
11+
<File Path="GitVersion.yml" />
12+
<File Path="LICENSE" />
13+
<File Path="new-project.ps1" />
14+
<File Path="nuget.config" />
15+
<File Path="README.md" />
16+
<File Path="update-solution.ps1" />
17+
</Folder>
18+
<Folder Name="/src/">
19+
<Project Path="src/NetEvolve.Extensions.Strings/NetEvolve.Extensions.Strings.csproj" />
20+
</Folder>
21+
<Folder Name="/tests/">
22+
<Project Path="tests/NetEvolve.Extensions.Strings.Tests.Unit/NetEvolve.Extensions.Strings.Tests.Unit.csproj" />
23+
</Folder>
24+
</Solution>

0 commit comments

Comments
 (0)