Skip to content

Commit

Permalink
Fixed artifact names generated by .NET compilation of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed Nov 16, 2024
1 parent b2550b0 commit 51ea843
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/upload-artifact@v4
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
with:
name: linux-builds-dotnet-${{ matrix.dotnet }}
name: linux-builds-${{ matrix.framework }}
path: |
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/linux-x64/publish/
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/linux-arm64/publish/
Expand All @@ -51,7 +51,7 @@ jobs:
uses: actions/upload-artifact@v4
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
with:
name: osx-builds-dotnet-${{ matrix.dotnet }}
name: osx-builds-${{ matrix.framework }}
path: |
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/osx-x64/publish/
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/osx-arm64/publish/
Expand All @@ -63,7 +63,7 @@ jobs:
uses: actions/upload-artifact@v4
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
with:
name: windows-builds-dotnet-${{ matrix.dotnet }}
name: windows-builds-${{ matrix.framework }}
path: |
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/win-x64/publish/
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/win-arm64/publish/

0 comments on commit 51ea843

Please sign in to comment.