Skip to content

feat: add actionlint (#89) #532

feat: add actionlint (#89)

feat: add actionlint (#89) #532

Workflow file for this run

name: deploy site
on:
push:
branches-ignore:
- 'deploy'
# schedule:
# - cron: '0 4 * * *'
jobs:
build:
name: Build HTML
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install Python dependencies
run: python -m pip install -r requirements.txt
- name: build site
run: ./deploy.sh
env:
git_hash: ${{ github.sha }}
DEPLOY_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# DEPLOY_GITHUB_USER: leanprover-community-bot
github_repo: ${{ github.repository }}
github_ref: ${{ github.ref }}