Skip to content

Install the dependencies #4

Install the dependencies

Install the dependencies #4

Workflow file for this run

name: Upload docs artifact
on: [push]
jobs:
Create-Docs:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requirements.txt
pip install .
pip install docs_requirements.txt
Upload-To-Artifacts:
runs-on: ubuntu-latest
steps:
- run: mkdir -p path/to/artifact
- run: echo hello > path/to/artifact/world.txt
- uses: actions/upload-artifact@v4
with:
name: my-artifact
path: path/to/artifact/world.txt