From 2bfc20ef41c98abcdba0174e4e9cba9136a0ef5f Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 30 Dec 2020 12:59:00 -0500 Subject: [PATCH] fix blockchain headers path in github actions build --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f9e339fc0..21539aa04 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,8 +40,9 @@ jobs: - name: Download blockchain headers run: | - mkdir -p ./dist/electron/static/daemon - curl -o ./dist/electron/static/daemon/headers https://headers.lbry.io/blockchain_headers_latest + mkdir -p ./static/daemon + curl -o ./static/daemon/headers https://headers.lbry.io/blockchain_headers_latest + ls ./static/daemon - name: Build run: |