Skip to content

Commit 20aad69

Browse files
chore(ci): bump dailydevops/pipelines from 0.14.110 to 1.2.5 (#357)
1 parent e58f041 commit 20aad69

File tree

5 files changed

+52
-65
lines changed

5 files changed

+52
-65
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ on:
2121
jobs:
2222
all:
2323
name: Build & Tests
24-
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.110
24+
uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.2.5
2525
with:
26-
enableSonarQube: true
27-
dotnet-logging: ${{ inputs.dotnet-logging }}
28-
dotnet-quality: ga
29-
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
30-
solution: ./Arguments.sln
26+
dotnetLogging: ${{ inputs.dotnet-logging }}
27+
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
28+
solution: ./Arguments.slnx
3129
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/[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

Arguments.sln

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

Arguments.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.Arguments/NetEvolve.Arguments.csproj" />
20+
</Folder>
21+
<Folder Name="/tests/">
22+
<Project Path="tests/NetEvolve.Arguments.Tests.Unit/NetEvolve.Arguments.Tests.Unit.csproj" />
23+
</Folder>
24+
</Solution>

Directory.Packages.props

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

0 commit comments

Comments
 (0)