Skip to content

Commit c72af7f

Browse files
mmckyclaude
andcommitted
linkcheck: pass explicit -f - to tar when extracting from the curl pipe
Make stdin extraction explicit (tar -xzf -) rather than relying on GNU tar's compiled-in default archive device. Backports the fix from QuantEcon/lecture-python.myst#953 for consistency across the migrated linkcheck workflows. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent ffc92c2 commit c72af7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
set -euo pipefail
3232
mkdir -p _site
33-
curl -fsSL "${{ steps.release.outputs.asset-url }}" | tar -xz -C _site
33+
curl -fsSL "${{ steps.release.outputs.asset-url }}" | tar -xzf - -C _site
3434
- name: AI-Powered Link Checker
3535
uses: QuantEcon/action-link-checker@main
3636
with:

0 commit comments

Comments
 (0)