Website Automation #1591
This file contains hidden or 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.9' | |
| - uses: abatilo/actions-poetry@v3 | |
| with: | |
| poetry-version: '2.2.1' | |
| - name: Install Dependencies | |
| run: poetry install | |
| - name: Generate Webpages and Images | |
| run: poetry 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' }} |