We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b127b7c commit e637f5aCopy full SHA for e637f5a
.github/workflows/build_and_deploy_sphinx_docs.yml
@@ -9,22 +9,18 @@ on:
9
# Allows running manually from the Actions tab
10
workflow_dispatch:
11
12
-env:
13
- REGISTRY: ghcr.io
14
- IMAGE_NAME: ${{ github.repository }}
15
16
jobs:
17
build:
18
runs-on: ubuntu-20.04
19
- container: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
20
defaults:
21
run:
22
shell: bash
23
steps:
24
- name: Build Sphinx docs
25
run: |
26
mkdir docs
27
- docker run ghcr.io/${{ github.repository }}:latest cd /opt/colcon_ws/src/gisnav && make docs
+ docker run ghcr.io/${{ github.repository }}:latest bash -c "cd /opt/colcon_ws/src/gisnav && make docs"
28
docker cp $(docker ps -q -l):/opt/colcon_ws/src/gisnav/docs/_build docs
29
30
- name: Install node
0 commit comments