Merge pull request #716 from int-brain-lab/iblrigv8dev #24
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
pdf: | |
name: Build PDF | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PDM | |
uses: pdm-project/setup-pdm@v4 | |
with: | |
cache: true | |
python-version-file: pyproject.toml | |
- name: Install requirements | |
run: pdm sync -dG doc | |
- name: Build PDF | |
run: pdm run make -C docs/ simplepdf | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: documentation | |
path: docs/build/simplepdf/*.pdf | |
retention-days: 1 | |
release: | |
name: Publish GitHub Release | |
needs: pdf | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: documentation | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: iblrig_*_reference.pdf |