Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs workflow updates #97

Merged
merged 4 commits into from
Jan 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use docker container inside step instead of in workflow config as Git…
…Hub Actions overrides entrypoint [skip ci]
  • Loading branch information
hmakelin committed Jan 25, 2024
commit 212e5bef79601e9bc807ce858eff77f584300abc
5 changes: 3 additions & 2 deletions .github/workflows/build_and_deploy_sphinx_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ on:
jobs:
build:
runs-on: ubuntu-20.04
container: ghcr.io/${{ github.repository }}:latest
defaults:
run:
shell: bash
steps:
- name: Build Sphinx docs
run: |
make docs
mkdir -p docs/_build
docker run ghcr.io/${{ github.repository }}:latest make docs
docker cp $(docker ps -q -l):/opt/colcon_ws/src/gisnav/docs/_build docs

- name: Install node
run: |
Expand Down
Loading