From 70cc59d41cfab821c1bc53876aaaff4c722589cd Mon Sep 17 00:00:00 2001 From: Grzegorz Piwowarek Date: Sun, 13 Oct 2024 16:38:51 +0200 Subject: [PATCH] Fix action name --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d5881b..ec862b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: needs: [ test ] steps: - run: | - if [[ "${{ needs.build.result }}" == "success" || "${{ needs.build.result }}" == "skipped" ]]; then + if [[ "${{ needs.test.result }}" == "success" || "${{ needs.test.result }}" == "skipped" ]]; then exit 0 else exit 1