mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
Use --unlink
when extracting build artifacts to prevent issues
This commit is contained in:
parent
04cd68f914
commit
b0eb1fed1f
1 changed files with 3 additions and 1 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -116,7 +116,9 @@ jobs:
|
|||
name: ${{ inputs.platform }}
|
||||
|
||||
- name: extract bottles
|
||||
run: tar xzvf artifacts.tgz -C $TEA_PREFIX
|
||||
# Note: unlink needed when changing a directory to a symlink, for example in
|
||||
# https://github.com/teaxyz/pantry.extra/pull/435
|
||||
run: tar xzvf artifacts.tgz -C $TEA_PREFIX --unlink
|
||||
|
||||
- run: pkg test ${{ inputs.projects }}
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue