Merge pull request #2511 from mashehu/handle-custom-schema-error-mess… #3458
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nf-core/tools dev API docs | |
# Run on push and PR to test that docs build | |
on: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- "CHANGELOG.md" | |
pull_request: | |
paths-ignore: | |
- "CHANGELOG.md" | |
release: | |
types: [published] | |
# Cancel if a newer run is started | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
api-docs: | |
name: Build & push Sphinx API docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source-code repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r ./docs/api/requirements.txt | |
pip install . | |
- name: Build HTML docs | |
run: make --directory ./docs/api html | |
- name: Sync dev docs | |
# Only sync with the website if it was a push from nf-core/tools dev branch | |
if: github.repository == 'nf-core/tools' && github.event_name == 'push' && github.event.ref == 'refs/heads/dev' | |
uses: SamKirkland/FTP-Deploy-Action@4.0.0 | |
with: | |
server: ${{ secrets.ftp_server }} | |
username: ${{ secrets.ftp_username}} | |
password: ${{ secrets.ftp_password }} | |
local-dir: "./docs/api/_build/html/" | |
server-dir: ${{ secrets.ftp_server_old_site_dir }}/dev/ | |
protocol: ${{ secrets.ftp_protocol }} | |
port: ${{ secrets.ftp_port }} |