Skip to content

Commit

Permalink
fix: shell error
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroto Funakoshi <hiroto.funakoshi.hiroto@gmail.com>
  • Loading branch information
hlts2 committed Apr 3, 2024
1 parent 8057bf5 commit b0ab424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
id: check_upgrade
run: |
if [ "${SUPPORTED_LAST_VALD_VERSION}" != "${SUPPORTED_LAST_CLIENT_VERSION}" ]; then
RELEASE_BRANCH_NAME=$(cat ${SUPPORTED_TWO_VALD_VERSIONS} | awk '{print $2}')
RELEASE_BRANCH_NAME=$(echo ${SUPPORTED_TWO_VALD_VERSIONS} | awk '{print $2}')
echo "UPGRADE_SUPPORTED_LAST_CLIENT_VERSION=true" >> $GITHUB_OUTPUT
echo "RELEASE_BRANCH_NAME=${RELEASE_BRANCH_NAME}" >> $GITHUB_OUTPUT
Expand All @@ -87,7 +87,7 @@ jobs:
fi
if [ "${SUPPORTED_LATEST_VALD_VERSION}" != "${SUPPORTED_LATEST_CLIENT_VERSION}" ]; then
RELEASE_BRANCH_NAME=$(cat ${SUPPORTED_TWO_VALD_VERSIONS} | awk '{print $1}')
RELEASE_BRANCH_NAME=$(echo ${SUPPORTED_TWO_VALD_VERSIONS} | awk '{print $1}')
echo "UPGRADE_SUPPORTED_LATEST_CLIENT_VERSION=true" >> $GITHUB_OUTPUT
echo "RELEASE_BRANCH_NAME=${RELEASE_BRANCH_NAME}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit b0ab424

Please sign in to comment.