Skip to content
Open
Changes from all commits
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
9 changes: 5 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build and deploy accml docs

on:
push:
branches: [ main ] # build on pushes to main (adjust as needed)
branches: [ dev/main ] # build on pushes to main (adjust as needed)
pull_request:
branches: [ main ]
branches: [ dev/main ]

jobs:
build-deploy:
Expand All @@ -23,10 +23,11 @@ jobs:

- name: Install dependencies
run: |
find . -type f
python -m pip install --upgrade pip
python3 -m pip install \
./external-repositories/accml_lib/[bluesky-epics,docs,pyat-simulator]
./[bluesky-epics]
./external-repositories/accml_lib/[bluesky-epics,bluesky-tango,docs,pyat-simulator] \
./[bluesky-epics,bluesky-tango]

- name: Build docs
working-directory: docs
Expand Down
Loading