Skip to content

Build and Deploy #21219

Build and Deploy

Build and Deploy #21219

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
schedule:
- cron: '0 6 * * *'
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: actions/setup-python@v3
with:
python-version: "3.8"
- run: pip install -r requirements.txt
- name: Build
run: ./create.py
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.3.0
with:
branch: gh-pages
folder: public