fix large file uploads #7736
1 changed files with 10 additions and 0 deletions
10
.github/workflows/deploy.yml
vendored
10
.github/workflows/deploy.yml
vendored
|
@ -40,6 +40,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
xcode-version: '13.1.0'
|
xcode-version: '13.1.0'
|
||||||
|
|
||||||
|
- uses: Homebrew/actions/setup-homebrew@master
|
||||||
|
if: startsWith(runner.os, 'mac')
|
||||||
|
|
||||||
|
- name: Install Python2
|
||||||
|
if: startsWith(runner.os, 'mac')
|
||||||
|
run: |
|
||||||
|
/bin/bash -c "$(curl -fsSL https://github.com/alfredapp/dependency-scripts/raw/main/scripts/install-python2.sh)"
|
||||||
|
|
||||||
- name: Download blockchain headers
|
- name: Download blockchain headers
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ./static/daemon
|
mkdir -p ./static/daemon
|
||||||
|
@ -47,6 +55,8 @@ jobs:
|
||||||
ls ./static/daemon
|
ls ./static/daemon
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
if: startsWith(runner.os, 'mac')
|
||||||
|
|
||||||
run: |
|
run: |
|
||||||
yarn dlx cross-env
|
yarn dlx cross-env
|
||||||
yarn --network-timeout 600000
|
yarn --network-timeout 600000
|
||||||
|
|
Loading…
Reference in a new issue