Skip to content

Updated setup file to remove the unnecessary dependencies, i.e., csdl. #21

Updated setup file to remove the unnecessary dependencies, i.e., csdl.

Updated setup file to remove the unnecessary dependencies, i.e., csdl. #21

name: docs_pages_workflow
# execute this workflow automatically when a we push to main
on:
push:
branches: [ main ]
jobs:
build_docs_job:
runs-on: ubuntu-latest
container: debian:buster-slim
steps:
- name: Prepare Python repository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
apt-get update
apt-get -y install git rsync make
git clone --depth 1 "https://token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" .
shell: bash
- name: Build docs and update pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: "docs/build-docs.sh"
shell: bash