From 7516116bb7b621efea52e5d07f4ad1aa11c014c4 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Thu, 21 Mar 2024 20:04:07 +0100 Subject: [PATCH] last attempt for hash build step --- .github/workflows/all-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all-ci.yml b/.github/workflows/all-ci.yml index 99125c8ed..15bc79c18 100644 --- a/.github/workflows/all-ci.yml +++ b/.github/workflows/all-ci.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Calculate hash uses: MCJack123/ghaction-generate-release-hashes@v4 - if: "github.event_name == 'release'" + if: github.event_name == 'release' with: get-assets: true hash-type: sha256 @@ -48,7 +48,7 @@ jobs: - name: Upload hashes uses: actions/upload-artifact@v4 - if: "github.event_name == 'release'" + if: github.event_name == 'release' with: name: Artifact Hashes path: hashes.txt