Fix error in bundle app CI job

This commit is contained in:
Max Brunsfeld 2022-10-26 17:21:31 -07:00
parent fcfc4a4298
commit f56f0b7bbb

View file

@ -99,8 +99,8 @@ jobs:
echo "can't publish a release on channel ${channel}"
exit 1;;
esac
if [[ $GITHUB_REFNAME != $expected_tag_name ]]; then
echo "invalid release tag ${GITHUB_REFNAME}. expected ${expected_tag_name}"
if [[ $GITHUB_REF_NAME != $expected_tag_name ]]; then
echo "invalid release tag ${GITHUB_REF_NAME}. expected ${expected_tag_name}"
exit 1
fi