Skip to content

Commit 51ea843

Browse files
committed
Fixed artifact names generated by .NET compilation of GitHub Actions
1 parent b2550b0 commit 51ea843

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/upload-artifact@v4
4040
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
4141
with:
42-
name: linux-builds-dotnet-${{ matrix.dotnet }}
42+
name: linux-builds-${{ matrix.framework }}
4343
path: |
4444
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/linux-x64/publish/
4545
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/linux-arm64/publish/
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/upload-artifact@v4
5252
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
5353
with:
54-
name: osx-builds-dotnet-${{ matrix.dotnet }}
54+
name: osx-builds-${{ matrix.framework }}
5555
path: |
5656
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/osx-x64/publish/
5757
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/osx-arm64/publish/
@@ -63,7 +63,7 @@ jobs:
6363
uses: actions/upload-artifact@v4
6464
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
6565
with:
66-
name: windows-builds-dotnet-${{ matrix.dotnet }}
66+
name: windows-builds-${{ matrix.framework }}
6767
path: |
6868
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/win-x64/publish/
6969
${{ github.workspace }}/src/bin/Release/${{ matrix.framework }}/win-arm64/publish/

0 commit comments

Comments
 (0)