diff options
author | Naoto Ono <[email protected]> | 2024-03-13 11:53:34 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-03-13 12:36:38 +0900 |
commit | 7de60d6b89699143248874aa858168fb813c88c5 (patch) | |
tree | 9814be3cfb3ce36158b314de1209f50dc945dbcc | |
parent | 5732e83cc1f42f0ff171e48b6cd49e95c26d3f99 (diff) |
Do not fail launchable verify command
-rw-r--r-- | .github/actions/launchable/setup/action.yml | 2 |
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//\//_}" |