From aaa4b4a047c497c0841a94213e00a60b7d168ba8 Mon Sep 17 00:00:00 2001 From: Orbital-Web <36625832+Orbital-Web@users.noreply.github.com> Date: Sat, 13 Jan 2024 17:23:31 -0500 Subject: [PATCH] docs: clone zonopy --- .github/workflows/documentation.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index df01160..4abf958 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -17,11 +17,10 @@ jobs: - name: Install dependencies run: | pip install sphinx sphinx_rtd_theme myst_parser - eval `ssh-agent -s` - ssh-add - <<< '${{ secrets.ZONOPY_KEY }}' - git clone https://github.com/roahmlab/zonopy.git && cd zonopy && pip install -e . && cd .. - ssh-add - <<< '${{ secrets.ZONOPYROB_KEY }}' - git clone https://github.com/roahmlab/zonopy-robots && cd zonopy-robots && pip install -e . && cd .. + ssh-agent sh -c 'echo "${{ secrets.ZONOPY_KEY }}" | ssh-add - && git clone git@github.com:roahmlab/zonopy.git' + cd zonopy && pip install -e . && cd .. + ssh-agent sh -c 'echo "${{ secrets.ZONOPYROB_KEY }}" | ssh-add - && git clone git@github.com:roahmlab/zonopy-robots.git' + cd zonopy-robots && pip install -e . && cd .. pip install -e . - name: Sphinx build run: |