From a47d9d3f314abe4784e43d3fcbf50e843a4c27df Mon Sep 17 00:00:00 2001 From: Christian Henkel <6976069+ct2034@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:09:12 +0200 Subject: [PATCH] Install our packages for automatic API docs to work (#22) Signed-off-by: Christian Henkel --- .github/workflows/deploy.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7a4d6168..fdb94db4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,9 +13,15 @@ jobs: # Checkout the repository - name: Checkout repository uses: actions/checkout@v2 - # install the dependencies + # Install the dependencies - name: Install dependencies run: pip install -r docs/requirements.txt + # Install packages + - name: Install our packages + run: | + pip install as2fm_common/. + pip install scxml_converter/. + pip install jani_generator/. # build the documentation - name: Build documentation run: | @@ -46,4 +52,4 @@ jobs: # deploy the documentation to GitHub Pages - name: Deploy to github pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v4