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 80b782b commit 6e3b92bCopy full SHA for 6e3b92b
.github/actions/build-website/action.yml
@@ -67,7 +67,7 @@ runs:
67
GH_TOKEN: ${{ inputs.repo_access_token }}
68
run: |
69
echo "Finding latest library-docs release..."
70
- LATEST_TAG=$(gh release list --repo ${{ github.repository }} --limit 50 | grep "library-docs-" | head -1 | awk '{print $3}')
+ LATEST_TAG=$(gh release list --repo ${{ github.repository }} --limit 50 | grep "library-docs-" | head -1 | awk -F'\t' '{print $3}')
71
if [ -z "$LATEST_TAG" ]; then
72
echo "Error: No library-docs release found. Run the 'Generate Library' workflow first."
73
exit 1
0 commit comments