summaryrefslogtreecommitdiff
diff options
authorNaoto Ono <[email protected]>2024-03-13 11:53:34 +0900
committerHiroshi SHIBATA <[email protected]>2024-03-13 12:36:38 +0900
commit7de60d6b89699143248874aa858168fb813c88c5 (patch)
tree9814be3cfb3ce36158b314de1209f50dc945dbcc
parent5732e83cc1f42f0ff171e48b6cd49e95c26d3f99 (diff)
Do not fail launchable verify command
-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 458b0c7d72..c5da5c3d80 100644
--- a/.github/actions/launchable/setup/action.yml
+++ b/.github/actions/launchable/setup/action.yml
@@ -96,7 +96,7 @@ runs:
PATH=$PATH:$(python -msite --user-base)/bin
echo "PATH=$PATH" >> $GITHUB_ENV
pip install --user launchable
- launchable verify
+ launchable verify || true
: # The build name cannot include a slash, so we replace the string here.
github_ref="${{ github.ref }}"
github_ref="${github_ref//\//_}"