Skip to content

Commit

Permalink
Updated to latest version of GH artifacts actions
Browse files Browse the repository at this point in the history
  • Loading branch information
carldebilly committed Nov 24, 2024
1 parent f43e035 commit c43fc5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ jobs:
Get-ChildItem -Path . -Recurse -Filter *.nupkg | Copy-Item -Destination $OutputDir
- name: Upload NuGet packages as artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
compression-level: 9
name: nuget-packages
path: nuget-packages/
if-no-files-found: error

- name: Test
#run: dotnet test Yllibed.HttpServer.sln /p:Configuration=Release /p:CollectCoverage=true /p:CoverletOutputFormat=opencover --no-build
Expand All @@ -53,7 +55,7 @@ jobs:

steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: nuget-packages
path: ./nuget-packages
Expand Down
1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

<!-- Supported Platforms -->
<TargetFrameworks Condition="'$(IsTestProject)'!='true'">netstandard2.0;net8.0;net9.0</TargetFrameworks>
<TargetFramework Condition="'$(IsTestProject)'=='true'">dotnet9</TargetFramework>

<!-- General properties -->
<Company>Carl de Billy</Company>
Expand Down

0 comments on commit c43fc5a

Please sign in to comment.