Skip to content

Commit ac1a811

Browse files
committed
fix: gosum.yml indentation
1 parent b1a8d89 commit ac1a811

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/gosum.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)