File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 25
25
run : |
26
26
mkdir -p docs/_build
27
27
docker run ghcr.io/${{ github.repository }}:latest make docs
28
- docker cp $(docker ps -q -l):/opt/colcon_ws/src/gisnav/docs/vitepress/docs/dist docs
28
+ docker cp $(docker ps -q -l):/opt/colcon_ws/src/gisnav/docs/vitepress/docs/.vitepress/ dist docs
29
29
30
30
- name : Install node
31
31
run : |
Original file line number Diff line number Diff line change @@ -110,8 +110,10 @@ RUN apt-get update \
110
110
# Node 18 for building the docs (Sphinx dependencies already in setup.py)
111
111
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash \
112
112
&& source ~/.nvm/nvm.sh \
113
- && nvm install 18 \
114
- && nvm use 18
113
+ && nvm install 20 \
114
+ && nvm use 20 \
115
+ && cd docs/vitepress \
116
+ && npm install
115
117
116
118
ENTRYPOINT ["/entrypoint.sh" ]
117
119
You can’t perform that action at this time.
0 commit comments