Skip to content

Commit 089a4b2

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 f5c8353 commit 089a4b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

workflow-templates/publish-go-nightly-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
path: ${{ env.DIST_DIR }}
197197

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

workflow-templates/release-go-crosscompile-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
pattern: ${{ env.ARTIFACT_PREFIX }}*
217217

218218
- name: Create checksum file
219-
working-directory: ${{ env.DIST_DIR}}
219+
working-directory: ${{ env.DIST_DIR }}
220220
run: |
221221
TAG="${GITHUB_REF/refs\/tags\//}"
222222
sha256sum ${{ env.PROJECT_NAME }}_${TAG}* > ${TAG}-checksums.txt

workflow-templates/release-go-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
path: ${{ env.DIST_DIR }}
204204

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

0 commit comments

Comments
 (0)