Skip to content

Commit 4973a41

Browse files
committed
Fix non-standard formatting of GitHub Actions context references
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 762375c commit 4973a41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/publish-go-nightly-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193
path: ${{ env.DIST_DIR }}
194194

195195
- name: Create checksum file
196-
working-directory: ${{ env.DIST_DIR}}
196+
working-directory: ${{ env.DIST_DIR }}
197197
run: |
198198
TAG="nightly-$(date -u +"%Y%m%d")"
199199
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* > ${TAG}-checksums.txt

Diff for: .github/workflows/release-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
path: ${{ env.DIST_DIR }}
201201

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

0 commit comments

Comments
 (0)