File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,19 @@ jobs:
1212 # Get the tag name
1313 - name : Get tag name
1414 run : |
15- echo "Tag name : ${GITHUB_REF}"
15+ echo "Tag name: ${GITHUB_REF}"
1616 id : tag_name
1717 - name : Extract tag version
1818 run : |
19- echo "Tag version : ${GITHUB_REF#refs/tags/}"
19+ echo "Tag version: ${GITHUB_REF#refs/tags/}"
2020 id : tag_version
2121 - name : Check Go module sum
22- run : curl https://sum.golang.org/lookup/github.com/unownhash/gohbem@${TAG_VERSION}
22+ run : |
23+ curl https://sum.golang.org/lookup/github.com/unownhash/gohbem@${TAG_VERSION}
2324 env :
2425 TAG_VERSION : ${{ steps.tag_version.outputs.text }}
2526 - name : Print cURL body
26- run : echo "${CURL_BODY}"
27+ run : |
28+ echo "${CURL_BODY}"
2729 env :
2830 CURL_BODY : ${{ steps.check-go-module-sum.outputs.text }}
You can’t perform that action at this time.
0 commit comments