From 529bd336fcf0a9f6c9b7c8d5dc9a698b2e4c40ab Mon Sep 17 00:00:00 2001 From: Chaminda Divitotawela Date: Fri, 14 Jun 2024 23:06:47 +1000 Subject: [PATCH] fix: update artifacts hash on release page (#7231) Release workflow publish step was missing the depepndency of artifacts jobs. Due to this reason it could not collect the artifact hashes from the artifacts job. This was introduced in the release workflow consolidation Signed-off-by: Chaminda Divitotawela --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 496691293d..b1f8fb2fc5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,7 @@ jobs: publish: runs-on: ubuntu-22.04 - needs: [testWindows] + needs: [testWindows, artifacts] permissions: contents: write steps: