summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaoto Ono <onoto1998@gmail.com>2024-07-17 17:18:58 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-07-18 12:22:47 +0900
commit509f1b50c2956089f92ae18d8bec0b8328aa05d1 (patch)
treecec7024e8b36774cb1e65366bd21b60ec2f497f9
parentd11d615ba602e92a7279b7efdf595ba11ba3a663 (diff)
Lanunchable: Add missing condition statement
Addresses https://github.com/ruby/ruby/pull/11183/files#r1680617485.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11185
-rw-r--r--.github/actions/launchable/setup/action.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml
index d31af2db43..6f81531ddc 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