We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67fde7 commit 8955de8Copy full SHA for 8955de8
.github/workflows/docs.yml
@@ -77,7 +77,7 @@ jobs:
77
echo "latest-tag=$(git tag -l | tail -1)" >> $GITHUB_ENV
78
- name: (latest-tag) Check if Documentation Exists
79
run: |
80
- [ -d docs-out/${{ env.latest-tag }} ] && echo "latest-tag-has-docs=1" >> $GITHUB_ENV
+ if [ -d "docs-out/${{ env.latest-tag }}" ]; then echo "latest-tag-has-docs=1" >> "$GITHUB_ENV"; fi
81
82
# 8. If there is no documentation for the latest tag, build it.
83
- name: (latest-tag) Checkout Package
0 commit comments