Skip to content

Commit

Permalink
Migrate from custom CI to dotnet-releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
FrediKats committed May 12, 2024
1 parent 5219db0 commit b47b6e2
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 101 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/build-test.yaml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI/CD

on:
push:
pull_request:

jobs:
build:
uses: Kysect/.github/.github/workflows/dotnet-releaser.yaml@master
with:
dotnet-version: '8.0'
secrets:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
47 changes: 0 additions & 47 deletions .github/workflows/nuget-publish.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions Sources/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</ItemGroup>

<ItemGroup Condition="$(Configuration) == 'Release'">
<None Include="$(SolutionDir)..\Images\Kysect-logo.png" Pack="true" PackagePath="\" />
<None Include="$(SolutionDir)..\README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)..\Images\Kysect-logo.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
6 changes: 6 additions & 0 deletions Sources/dotnet-releaser.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# configuration file for dotnet-releaser
[msbuild]
project = "Kysect.DotnetProjectSystem.sln"
[github]
user = "kysect"
repo = "DotnetProjectSystem"

0 comments on commit b47b6e2

Please sign in to comment.