Skip to content

Commit

Permalink
Trying to migrate to common pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
SKProCH committed Jul 24, 2024
1 parent 2eee672 commit 6979cb5
Show file tree
Hide file tree
Showing 26 changed files with 43 additions and 1,292 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and publish

on:
push:
branches:
- master
- main
- release/**
paths:
- Material.**
tags:
- v**

jobs:
build-and-test:
uses: SKProCH/CommonWorkflows/.github/workflows/build-publish.yml@main
secrets:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
with:
publish-nightly: ${{ github.ref_type != 'tag' && (github.ref == 'master' || github.ref == 'main') }}
dotnet-version: 8
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and publish

on:
push:
branches:
- !master
- !main
- !release/**

jobs:
build-and-test:
uses: SKProCH/CommonWorkflows/.github/workflows/build-publish.yml@main
secrets:
NUGET_KEY: "NONE"
with:
only-build: true
dotnet-version: 8
58 changes: 0 additions & 58 deletions .github/workflows/main.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/workflows/release.yml

This file was deleted.

128 changes: 0 additions & 128 deletions .nuke/build.schema.json

This file was deleted.

4 changes: 0 additions & 4 deletions .nuke/parameters.json

This file was deleted.

1 change: 1 addition & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<PackageVersion Include="Avalonia.Themes.Simple" Version="$(AvaloniaVersion)" />
<PackageVersion Include="Avalonia.Browser" Version="$(AvaloniaVersion)" />
<PackageVersion Include="Microsoft.NET.WebAssembly.Threading" Version="8.0.0" />
<PackageVersion Include="Numerge.MSBuild" Version="0.1.7" />
<!--For Material.Styles-->
<PackageVersion Include="System.Reactive" Version="6.0.0" />
<PackageVersion Include="aqua.tool.polyfill.IsExternalInit" Version="2.2.9">
Expand Down
4 changes: 0 additions & 4 deletions Material.Avalonia.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "!Solution Items", "Solution
.gitignore = .gitignore
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.csproj", "{32F02580-2829-46FF-A2BE-2E5A6683627E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Material.Avalonia.Demo.Browser", "Material.Avalonia.Demo.Browser\Material.Avalonia.Demo.Browser.csproj", "{CDFD165F-BF7F-4323-9F59-454289F90186}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Material.Avalonia.Demo.Desktop", "Material.Avalonia.Demo.Desktop\Material.Avalonia.Demo.Desktop.csproj", "{F5C9683F-D808-496F-AC76-D677FADFA40E}"
Expand All @@ -41,8 +39,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{32F02580-2829-46FF-A2BE-2E5A6683627E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32F02580-2829-46FF-A2BE-2E5A6683627E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ECBAA8F5-8837-4F09-A33E-9157EF1C3FE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ECBAA8F5-8837-4F09-A33E-9157EF1C3FE2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ECBAA8F5-8837-4F09-A33E-9157EF1C3FE2}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
4 changes: 4 additions & 0 deletions Material.Avalonia/Material.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@
<ItemGroup>
<ProjectReference Include="..\Material.Styles\Material.Styles.csproj"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Numerge.MSBuild"/>
</ItemGroup>
</Project>
File renamed without changes.
11 changes: 0 additions & 11 deletions build/.editorconfig

This file was deleted.

Loading

0 comments on commit 6979cb5

Please sign in to comment.