Website Automation #1111
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
name: Website Automation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: 0 0 * * 0 | |
workflow_dispatch: | |
jobs: | |
images: | |
name: Deployment | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install Dependencies | |
run: pip install -r requirements.txt | |
- name: Generate Webpages and Images | |
run: python scripts/automate.py | |
- name: Build Webpages with Jekyll | |
uses: actions/jekyll-build-pages@v1 | |
with: | |
source: docs/ | |
destination: docs/_site | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Only build webpage if not on main branch | |
if: ${{ github.ref != 'refs/heads/main' }} | |
- name: Commit Changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: | | |
Generated Sample Programs website automatically | |
on-behalf-of: @TheRenegadeCoder <jeremy.grifski@therenegadecoder.com> | |
author_name: GitHub Actions | |
author_email: action@github.com | |
env: | |
# This is necessary in order to push a commit to the repo | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged | |
# Only commit if on main branch | |
if: ${{ github.ref == 'refs/heads/main' }} |