From 62f72a263b1ec14aa50daa4b0e35fb02153fbfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Go=C5=82awski?= Date: Tue, 19 Jul 2022 14:27:16 +0200 Subject: [PATCH] Use lowercase artifacts names --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89b745dc4..81990ba77 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}