From 5a7326963b813d438d33320740a61819c6a24cab Mon Sep 17 00:00:00 2001 From: Naoto Ono Date: Wed, 17 Jul 2024 17:18:58 +0900 Subject: [PATCH] Lanunchable: Add missing condition statement Addresses https://github.com/ruby/ruby/pull/11183/files#r1680617485. --- .github/actions/launchable/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index d31af2db4300b2..6f81531ddcbdb2 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -102,7 +102,7 @@ runs: # Since updated PATH variable will be available in only subsequent actions, we need to add the path beforehand. # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path run: echo "$(python -msite --user-base)/bin" >> $GITHUB_PATH - if: startsWith(inputs.os, 'macos') + if: steps.enable-launchable.outputs.enable-launchable && startsWith(inputs.os, 'macos') - name: Set up Launchable shell: bash