From f286e08fe763382cb8fe2ef5c6e39491ddfd709b Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 18 May 2025 09:08:02 -0700 Subject: [PATCH] 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. --- .github/workflows/release-go-crosscompile-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-go-crosscompile-task.yml b/.github/workflows/release-go-crosscompile-task.yml index faf3ae6..5101fbd 100644 --- a/.github/workflows/release-go-crosscompile-task.yml +++ b/.github/workflows/release-go-crosscompile-task.yml @@ -204,7 +204,7 @@ jobs: pattern: ${{ env.ARTIFACT_PREFIX }}* - name: Create checksum file - working-directory: ${{ env.DIST_DIR}} + working-directory: ${{ env.DIST_DIR }} run: | TAG="${GITHUB_REF/refs\/tags\//}" sha256sum ${{ env.PROJECT_NAME }}_${TAG}* > ${TAG}-checksums.txt