Skip to content

Commit 6e3b92b

Browse files
milldrclaude
andauthored
fix: use tab delimiter when parsing gh release list output (#848)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 80b782b commit 6e3b92b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/build-website/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ runs:
6767
GH_TOKEN: ${{ inputs.repo_access_token }}
6868
run: |
6969
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}')
70+
LATEST_TAG=$(gh release list --repo ${{ github.repository }} --limit 50 | grep "library-docs-" | head -1 | awk -F'\t' '{print $3}')
7171
if [ -z "$LATEST_TAG" ]; then
7272
echo "Error: No library-docs release found. Run the 'Generate Library' workflow first."
7373
exit 1

0 commit comments

Comments
 (0)