From 69fbb31d7e57b239f23acfb30e08c10ec364f4c9 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Sat, 30 Mar 2024 22:43:08 -0400 Subject: [PATCH] fix(docs): setup brownie network in deploy action (#41) --- .github/workflows/deploy_docs.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy_docs.yaml b/.github/workflows/deploy_docs.yaml index 09f24cae..25b8536e 100644 --- a/.github/workflows/deploy_docs.yaml +++ b/.github/workflows/deploy_docs.yaml @@ -30,6 +30,11 @@ jobs: pip install -r requirements.txt pip install sphinx sphinx-rtd-theme + - name: Setup brownie networks + run: | + brownie networks modify mainnet host=${{ secrets[WEB3_PROVIDER] }} + continue-on-error: true + - name: Build documentation config run: | pip install . @@ -62,4 +67,4 @@ jobs: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4