mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 10:32:40 +00:00
work around the workaround
This commit is contained in:
parent
b20d6deee9
commit
2af85ba80d
1 changed files with 10 additions and 1 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -284,7 +284,16 @@ jobs:
|
|||
if: ${{ runner.os == 'macOS' }}
|
||||
run: |
|
||||
pushd build
|
||||
cpack
|
||||
retries=0
|
||||
while ! cpack; do
|
||||
echo "TRYING AGAIN..."
|
||||
retries=$((retries+1))
|
||||
if [ $retries -gt 5 ]; then
|
||||
echo "OH NO, WE'VE FAILED..."
|
||||
exit 1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
echo "making dirs"
|
||||
mkdir orig
|
||||
|
|
Loading…
Reference in a new issue