Skip to content

Build and deploy GH Pages #215

Build and deploy GH Pages

Build and deploy GH Pages #215

Workflow file for this run

# On every push this script is executed
on:
push:
branches:
- main
schedule:
- cron: '0 8 * * *'
name: Build and deploy GH Pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Generate device pages
run: |
python3 hwdata.py
- name: build_and_deploy
uses: shalzz/zola-deploy-action@v0.17.2
env:
PAGES_BRANCH: gh-pages
TOKEN: ${{ secrets.GITHUB_TOKEN }}