Skip to content

Commit

Permalink
Fix missing closing bracket in publish-docs.yml (#5113)
Browse files Browse the repository at this point in the history
Oops.
  • Loading branch information
charliermarsh authored Jul 16, 2024
1 parent 3cbdb88 commit e51ae19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: "Set docs version"
run: |
version="${{ (inputs.plan != '' && fromJson(inputs.plan).announcement_tag) || inputs.ref }"
version="${{ (inputs.plan != '' && fromJson(inputs.plan).announcement_tag) || inputs.ref }}"
# if version is missing, use 'latest'
if [ -z "$version" ]; then
echo "Using 'latest' as version"
Expand Down

0 comments on commit e51ae19

Please sign in to comment.