Skip to content

Commit

Permalink
Fix dotnet version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TheArcaneBrony committed Nov 15, 2023
1 parent 2d02aae commit 3b815f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
dotnet-version: '8.0.x'
include-prerelease: true
- name: Discord webhook
run: |
Expand All @@ -30,6 +30,7 @@ jobs:
rm -rf *.nupkg
dotnet pack --nologo --version-suffix preview$GITHUB_RUN_ID.$(git rev-parse --short HEAD) -o . ArcaneLibs
dotnet pack --nologo --version-suffix preview$GITHUB_RUN_ID.$(git rev-parse --short HEAD) -o . ArcaneLibs.Logging
dotnet pack --nologo --version-suffix preview$GITHUB_RUN_ID.$(git rev-parse --short HEAD) -o . ArcaneLibs.StringNormalisation
dotnet pack --nologo --version-suffix preview$GITHUB_RUN_ID.$(git rev-parse --short HEAD) -o . ArcaneLibs.Blazor.Components
dotnet nuget push $(ls *.nupkg) -k ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
if: ${{ success() }}
Expand Down
6 changes: 6 additions & 0 deletions ArcaneLibs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArcaneLibs.UsageTest", "Arc
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArcaneLibs.StringNormalisation", "ArcaneLibs.StringNormalisation\ArcaneLibs.StringNormalisation.csproj", "{91694CDF-6F5A-4637-9466-A864A93944A0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArcaneLibs.Blazor.Components", "ArcaneLibs.Blazor.Components\ArcaneLibs.Blazor.Components.csproj", "{3CB4C1FB-B63C-4ED4-B3D2-716E4140CF32}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -36,5 +38,9 @@ Global
{91694CDF-6F5A-4637-9466-A864A93944A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{91694CDF-6F5A-4637-9466-A864A93944A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{91694CDF-6F5A-4637-9466-A864A93944A0}.Release|Any CPU.Build.0 = Release|Any CPU
{3CB4C1FB-B63C-4ED4-B3D2-716E4140CF32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3CB4C1FB-B63C-4ED4-B3D2-716E4140CF32}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3CB4C1FB-B63C-4ED4-B3D2-716E4140CF32}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3CB4C1FB-B63C-4ED4-B3D2-716E4140CF32}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit 3b815f2

Please sign in to comment.