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