Lanunchable: Add missing condition statement

Addresses https://github.com/ruby/ruby/pull/11183/files#r1680617485.
This commit is contained in:
Naoto Ono 2024-07-17 17:18:58 +09:00 committed by Hiroshi SHIBATA
parent d11d615ba6
commit 509f1b50c2
Notes: git 2024-07-18 03:23:05 +00:00

View File

@ -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