.github/workflows/gh-pages.yml #493
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
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 0" # min(0-59) time(0-23) date(1-31) month(1-12) day(0-6) | |
jobs: | |
pull: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install Optuna@master | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git clone https://github.com/optuna/optuna.git | |
pip install optuna/ | |
- name: Cache kurobako CLI | |
id: cache-torch-dataset | |
uses: actions/cache@v2 | |
with: | |
path: ./FashionMNIST | |
key: fasion-mnist | |
- name: Install additional dependencies | |
run: pip install matplotlib plotly kaleido jinja2 scikit-learn torch torchvision | |
- name: Generate HTML | |
run: python visual_regression_tests.py --heavy --output-dir ./docs | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs |