Fix transformers API compatibility: support v4.26+ and v5.0+ with version-aware parameter selection #4700
Workflow file for this run
This file contains hidden or 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: docs | |
| on: | |
| pull_request: | |
| branches: [main] | |
| path: | |
| - 'flaml/*' | |
| - 'website/*' | |
| - '.github/workflows/deploy-website.yml' | |
| push: | |
| branches: [main] | |
| path: | |
| - 'flaml/*' | |
| - 'website/*' | |
| - '.github/workflows/deploy-website.yml' | |
| workflow_dispatch: | |
| merge_group: | |
| types: [checks_requested] | |
| permissions: | |
| contents: write | |
| jobs: | |
| checks: | |
| if: github.event_name != 'push' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: website | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 14.x | |
| # cache: yarn | |
| # cache-dependency-path: '**/yarn.lock' | |
| - name: setup python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: pydoc-markdown install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pydoc-markdown==4.7.0 setuptools | |
| - name: pydoc-markdown run | |
| run: | | |
| pydoc-markdown | |
| - name: Test Build | |
| run: | | |
| if [ -e yarn.lock ]; then | |
| yarn install --frozen-lockfile --ignore-engines | |
| yarn build | |
| elif [ -e package-lock.json ]; then | |
| npm ci | |
| npm run build | |
| else | |
| npm i --legacy-peer-deps | |
| npm run build | |
| fi | |
| gh-release: | |
| if: github.event_name != 'pull_request' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: website | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 14.x | |
| # cache: yarn | |
| # cache-dependency-path: '**/yarn.lock' | |
| - name: setup python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: pydoc-markdown install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pydoc-markdown==4.7.0 setuptools | |
| - name: pydoc-markdown run | |
| run: | | |
| pydoc-markdown | |
| - name: Build website | |
| run: | | |
| if [ -e yarn.lock ]; then | |
| yarn install --frozen-lockfile --ignore-engines | |
| yarn build | |
| elif [ -e package-lock.json ]; then | |
| npm ci | |
| npm run build | |
| else | |
| npm i --legacy-peer-deps | |
| npm run build | |
| fi | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| # Build output to publish to the `gh-pages` branch: | |
| publish_dir: ./website/build |