-
-
Notifications
You must be signed in to change notification settings - Fork 27
57 lines (45 loc) · 1.4 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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' }}