Skip to content

Commit

Permalink
ci: fix macos tar compatibility
Browse files Browse the repository at this point in the history
"a" is unsupported with "x"
  • Loading branch information
katrinafyi committed Dec 6, 2024
1 parent d68d685 commit 62de88d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
EOF
mkdir prev-patches
tar xaf patches.tar.zst -C prev-patches
tar xvf patches.tar.zst -C prev-patches
git config user.name 'github-actions[bot]'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
EOF
mkdir prev-patches
tar xaf patches.tar.zst -C prev-patches
tar xvf patches.tar.zst -C prev-patches
git config user.name 'github-actions[bot]'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
Expand Down

0 comments on commit 62de88d

Please sign in to comment.