Skip to content

Commit

Permalink
fix(ci): Correct YAML multi-line string syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuck committed Nov 9, 2024
1 parent bc689fa commit ac218ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
- name: Generate version.json
shell: bash
run: \
run: |
printf '{"commit":"%s","version":"%s","source":"https://github.com/%s","build":"%s/%s/actions/runs/%s"}\n' \
"$GITHUB_SHA" \
"$GITHUB_REF_NAME" \
"$GITHUB_REPOSITORY" \
"$GITHUB_SERVER_URL" \
"$GITHUB_REPOSITORY" \
"$GITHUB_RUN_ID" > version.json
"$GITHUB_RUN_ID" | tee version.json
- id: gcp-auth
uses: google-github-actions/auth@v2
Expand Down

0 comments on commit ac218ec

Please sign in to comment.