Skip to content

Commit

Permalink
Test fix for publish operation in GitHub actions (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmiyake authored Dec 9, 2024
1 parent 2795d4b commit 41d9fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/go-dist-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ runs:
GO_VERSION=$(cat "${PARAM_GO_VERSION_FILE}")
echo "Go version specified in ${PARAM_GO_VERSION_FILE} is ${GO_VERSION}"
elif [ -f "${FALLBACK_GO_VERSION_FILE}" ]; then
GO_VERSION=$(cat "${FALLBACK_GO_VERSION_FILE}")
read -r GO_VERSION < "${FALLBACK_GO_VERSION_FILE}"
echo "Go version specified in ${FALLBACK_GO_VERSION_FILE} is ${GO_VERSION}"
else
echo "Error: Go version was not specified as a parameter and neither ${PARAM_GO_VERSION_FILE} nor ${FALLBACK_GO_VERSION_FILE} exist"
Expand Down

0 comments on commit 41d9fe9

Please sign in to comment.