Skip to content

Commit

Permalink
Fixes the build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hiwakaba committed May 8, 2023
1 parent ef5fa41 commit ccc9cca
Show file tree
Hide file tree
Showing 3 changed files with 1,739 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -552,8 +552,8 @@ fi
if [ -n "${OPT_FORCE_PUBLISHER}" ]; then
CI_FORCE_PUBLISHER="${OPT_FORCE_PUBLISHER}"
elif [ -n "${ENV_FORCE_PUBLISHER}" ]; then
if echo "${ENV_FORCE_PUBLISHER}" | grep -q '^[0-9]'; then
PRNERR "\"ENV_FORCE_PUBLISHER\" environment:${ENV_FORCE_PUBLISHER} value must be Python version(ex, 3.6/3.8/3.10...)."
if [ "${ENV_FORCE_PUBLISHER}" = "3.9" ] || [ "${ENV_FORCE_PUBLISHER}" = "3.10" ] || [ "${ENV_FORCE_PUBLISHER}" = "3.11" ]; then
PRNERR "\"ENV_FORCE_PUBLISHER\" environment:${ENV_FORCE_PUBLISHER} value must be a valid Python version(ex, 3.6/3.8/3.10...)."
exit 1
fi
CI_FORCE_PUBLISHER="${ENV_FORCE_PUBLISHER}"
Expand Down
Loading

0 comments on commit ccc9cca

Please sign in to comment.