Skip to content

Commit

Permalink
Merge pull request #19 from hiwakaba/master
Browse files Browse the repository at this point in the history
Fixes the regex
  • Loading branch information
hiwakaba authored Feb 6, 2023
2 parents d66a0a7 + 64f3588 commit ef5fa41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ 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
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...)."
exit 1
fi
Expand Down

0 comments on commit ef5fa41

Please sign in to comment.