mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Deal with different tar names
This commit is contained in:
parent
6722c6af26
commit
4971ae4bd3
1 changed files with 7 additions and 1 deletions
8
.github/workflows/pr_build.yml
vendored
8
.github/workflows/pr_build.yml
vendored
|
@ -146,7 +146,13 @@ jobs:
|
|||
if: always()
|
||||
shell: bash
|
||||
run: |
|
||||
find "$HOME/vircadia-files/vcpkg" -name '*log' -type f -print0 | gtar --null --force-local -T - -c --xz -v -f "${{ runner.workspace }}/cmake-logs.tar.xz"
|
||||
if [ "${{ matrix.os }}" == "macOS-latest" ]; then
|
||||
TAR=gtar
|
||||
else
|
||||
TAR=tar
|
||||
fi
|
||||
|
||||
find "$HOME/vircadia-files/vcpkg" -name '*log' -type f -print0 | $TAR --null --force-local -T - -c --xz -v -f "${{ runner.workspace }}/cmake-logs.tar.xz"
|
||||
- name: Archive cmake logs
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v2
|
||||
|
|
Loading…
Reference in a new issue