Use lowercase artifacts names

This commit is contained in:
Konrad Goławski 2022-07-19 14:27:16 +02:00
parent 0486bf2bbe
commit 62f72a263b
1 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ jobs:
- name: Generate artifacts
uses: actions/upload-artifact@v3
with:
name: Hashcat-${{ runner.os }}-${{ matrix.shared == 0 && 'Static' || 'Shared' }}
name: hashcat-linux-${{ matrix.shared == 0 && 'static' || 'shared' }}
path: ${{ env.include_paths }}
build-macos:
@ -76,7 +76,7 @@ jobs:
- name: Generate artifacts
uses: actions/upload-artifact@v3
with:
name: Hashcat-${{ runner.os }}-${{ matrix.shared == 0 && 'Static' || 'Shared' }}
name: hashcat-macos-${{ matrix.shared == 0 && 'static' || 'shared' }}
path: ${{ env.include_paths }}
build-windows:
@ -106,5 +106,5 @@ jobs:
- name: Generate artifacts
uses: actions/upload-artifact@v3
with:
name: Hashcat-${{ runner.os }}-${{ matrix.shared == 0 && 'Static' || 'Shared' }}
name: hashcat-windows-${{ matrix.shared == 0 && 'static' || 'shared' }}
path: ${{ env.include_paths }}