From 55ffe19149531387bae008abcc1282382079feaf Mon Sep 17 00:00:00 2001 From: Nhan Phan Date: Thu, 12 Sep 2024 22:57:24 -0700 Subject: [PATCH] run deploy even if dep is skipped --- .github/workflows/deploy-program.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-program.yml b/.github/workflows/deploy-program.yml index 13d58ca..479b14f 100644 --- a/.github/workflows/deploy-program.yml +++ b/.github/workflows/deploy-program.yml @@ -82,7 +82,7 @@ jobs: name: Program / Deploy runs-on: ubuntu-latest needs: [test_js, check_tag] - if: needs.test_js.result == 'success' || (needs.check_tag.result == 'success' && needs.check_tag.outputs.type == 'release') + if: always() && (needs.test_js.result == 'success' || needs.test_js.result == 'skipped') permissions: contents: write steps: