aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ08nY2024-06-17 13:55:00 +0200
committerJ08nY2024-06-17 13:55:00 +0200
commit22cc984cd056b38bbd97f6757313edf568f82857 (patch)
treea70fef45f55166b9e7c96859e84fd938ff3edfc7
parent69787696e841a834d42e5c9994e7479e8626b686 (diff)
downloadpyecsca-22cc984cd056b38bbd97f6757313edf568f82857.tar.gz
pyecsca-22cc984cd056b38bbd97f6757313edf568f82857.tar.zst
pyecsca-22cc984cd056b38bbd97f6757313edf568f82857.zip
-rw-r--r--.github/workflows/docs.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 71ecb72..68ae881 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -27,10 +27,12 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
+ path: pyecsca
- uses: actions/checkout@v4
with:
repository: J08nY/pyecsca-codegen
submodules: true
+ path: pyecsca-codegen
- uses: actions/cache@v4
with:
path: ~/.cache/pip
@@ -55,13 +57,15 @@ jobs:
git clone https://github.com/colinoflynn/pico-python && cd pico-python && pip install . && cd ..
git clone https://github.com/picotech/picosdk-python-wrappers && cd picosdk-python-wrappers && pip install . && cd ..
- name: Install dependencies
+ working-directory: pyecsca
run: |
pip install -e ".[picoscope_sdk, picoscope_alt, chipwhisperer, smartcard, gmp, leia, test, dev, doc]"
- name: Build docs
+ working-directory: pyecsca
run: |
make docs
- uses: actions/upload-pages-artifact@v3.0.1
with:
- path: docs/_build/
+ path: pyecsca/docs/_build/
- id: deployment
uses: actions/deploy-pages@v4