Skip to content

Commit 6452735

Browse files
Make zip files unique
1 parent c6cbbf2 commit 6452735

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
@@ -30,10 +30,10 @@ jobs:
3030
- name: Test
3131
run: dotnet test --no-build --verbosity normal -c ${{ matrix.Configuration }}
3232
- name: Zip
33-
run: 7z a -tzip $env:StagingDirectory\InferNull.zip .\InferNull\bin\${{ matrix.Configuration }}\*
33+
run: 7z a -tzip $env:StagingDirectory\InferNull_${{ matrix.Configuration }}.zip .\InferNull\bin\${{ matrix.Configuration }}\*
3434
- name: Upload
3535
uses: actions/upload-artifact@v2
3636
with:
37-
name: InferNull (${{ matrix.configuration }})
38-
path: ${{ env.StagingDirectory }}\InferNull.zip
37+
name: InferNull (${{ matrix.configuration }}) ${{ github.run_number }}
38+
path: ${{ env.StagingDirectory }}\InferNull_${{ matrix.Configuration }}.zip
3939
if-no-files-found: error

0 commit comments

Comments
 (0)