File tree Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,22 @@ jobs:
10
10
steps :
11
11
- name : Checkout
12
12
uses : actions/checkout@v4
13
+
13
14
- name : Setup python
14
15
uses : actions/setup-python@v5
15
16
with :
16
17
python-version : ' 3'
18
+
17
19
- name : Setup pelican
18
20
run : pip install -r requirements.txt
21
+
19
22
- name : Build
20
23
run : python -m pelican
21
24
25
+ # FIXME
26
+ - name : Copy index page to root
27
+ run : cp output/index/index.html output/index.html
28
+
22
29
- name : Upload files
23
30
id : deployment
24
31
uses : actions/upload-pages-artifact@v3
43
50
- name : Deploy to GitHub Pages
44
51
id : deployment
45
52
uses : actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action
46
-
47
- # - name: Deploy
48
- # uses: peaceiris/actions-gh-pages@v3
49
- # # If you’re changing the branch from main,
50
- # # also change the `main` in `refs/heads/main`
51
- # # below accordingly.
52
- # if: ${{ github.ref == 'refs/heads/main' }}
53
- # with:
54
- # github_token: ${{ secrets.GITHUB_TOKEN }}
55
- # publish_dir: ./public
56
- # force_orphan: true
57
- # cname: bookish-telegram.thrsten.pages.github.io
You can’t perform that action at this time.
0 commit comments