Skip to content

Commit f286e08

Browse files
committed
Fix non-standard formatting of GitHub Actions context reference
The established convention is to pad the GitHub Actions context identifier in references. In this workflow code, the right hand padding was missing.
1 parent d87ba7a commit f286e08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-go-crosscompile-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
pattern: ${{ env.ARTIFACT_PREFIX }}*
205205

206206
- name: Create checksum file
207-
working-directory: ${{ env.DIST_DIR}}
207+
working-directory: ${{ env.DIST_DIR }}
208208
run: |
209209
TAG="${GITHUB_REF/refs\/tags\//}"
210210
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* > ${TAG}-checksums.txt

0 commit comments

Comments
 (0)