Skip to content

Implemented concentrated forces in the Pegasus example. #14

Implemented concentrated forces in the Pegasus example.

Implemented concentrated forces in the Pegasus example. #14

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