aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-10-14 22:06:42 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-10-14 22:06:42 -0700
commit28bd3a96b9cf6830e94389d6288d0b6095de5993 (patch)
treeb9cbfa21a771ea38ebbefaee9597950b81b0926e /.github
parent259747e1e6fe46460d605e21d4c9598d78fb52bc (diff)
downloadruby-28bd3a96b9cf6830e94389d6288d0b6095de5993.tar.gz
The needs != '' check is broken
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index b059a531b6..46b4be0596 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -81,6 +81,9 @@ jobs:
install: >-
${{ steps.find-tools.outputs.needs }}
if: ${{ steps.find-tools.outputs.needs != '' }}
+ # FIXME: The above `!= ''` check is not working correctly, so this runs
+ # even when `needs` is empty. Remove this `continue-on-error` after fixing it.
+ continue-on-error: true
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with: