Skip to content

Update CI workflows for autodoc & add separate jobs with/wo #3

Update CI workflows for autodoc & add separate jobs with/wo

Update CI workflows for autodoc & add separate jobs with/wo #3

Workflow file for this run

# Build the project and deploy it to GitHub pages

Check failure on line 1 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

(Line: 62, Col: 11): Unrecognized named-value: 'emv'. Located at position 25 within expression: env.IS_DEPLOY == '1' && emv.BUILD_AUTODOC == 'Yes'
name: Build
on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
- '*.*'
- 'staging*'
pull_request:
branches:
- master
- main
- '*.*'
- 'staging*'
permissions:
contents: write
jobs:
build:
name: Build and Deploy Autodoc=${{ matrix.build-autodoc }}
runs-on: ubuntu-latest
env:
IS_DEPLOY: ${{ (github.event_name == 'push' && '1') || '0' }}
IS_STAGING: ${{ (github.ref == 'refs/heads/staging' && '1') || '0' }}
IS_MAIN: ${{ ((github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') && '1') || '0' }}
BUILD_AUTODOC: ${{ matrix.build-autodoc }}
strategy:
fail-fast: false
matrix:
build-autodoc: ['Yes', 'No']
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
shell: bash
run: ./ci/install.sh
- name: List dependencies
shell: bash
run: |
echo Deploy: $IS_DEPLOY
echo Prod: $IS_PROD
echo Main: $IS_MAIN
echo Autodoc: $BUILD_AUTODOC
pip list
- name: Build project
shell: bash
run: ./ci/build.sh
- name: Deploy to GitHub Pages
if: env.IS_DEPLOY == '1' && emv.BUILD_AUTODOC == 'Yes'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/_build/html
clean: true
dry-run: ${{ (env.IS_STAGING == '1' && 'true') || 'false' }}