File tree Expand file tree Collapse file tree 2 files changed +21
-15
lines changed
Expand file tree Collapse file tree 2 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 1+ name : Build website
2+ runs :
3+ using : composite
4+ steps :
5+ - name : Checkout repo
6+ uses : actions/checkout@v4
7+
8+ - name : Set up Python 3.9
9+ uses : actions/setup-python@v5
10+ with :
11+ python-version : ' 3.9'
12+ cache : ' pip'
13+
14+ - name : Install dependencies
15+ run : |
16+ pip install -r requirements.txt
17+
18+ - name : Build website
19+ run : |
20+ nikola build
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-22.04
1010
1111 steps :
12- - name : Checkout repo
13- uses : actions/checkout@v4
14-
15- - name : Set up Python 3.9
16- uses : actions/setup-python@v5
17- with :
18- python-version : ' 3.9'
19- cache : ' pip'
20-
21- - name : Install dependencies
22- run : |
23- pip install -r requirements.txt
24-
2512 - name : Build website
26- run : |
27- nikola build
13+ uses : ./.github/actions/build-website
2814
2915 - name : Install SSH key
3016 uses : shimataro/ssh-key-action@v2
You can’t perform that action at this time.
0 commit comments