Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 8e5c195

Browse files
committed
CD: Add presentations to gh-pages deployment package
1 parent ad0529d commit 8e5c195

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/deploy_pages.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,28 +27,37 @@ jobs:
2727
environment:
2828
name: github-pages
2929
url: ${{ steps.deployment.outputs.page_url }}
30+
3031
runs-on: ubuntu-latest
32+
3133
steps:
3234
- name: Checkout
33-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3436
with:
3537
submodules: true
38+
3639
- name: Setup Python
37-
uses: actions/setup-python@v2
40+
uses: actions/setup-python@v4
41+
3842
- name: Install dependencies
3943
run: |
4044
pip install -r requirements.txt
45+
4146
- name: Build documents
4247
run: |
4348
LANGUAGE=en make html
4449
LANGUAGE=uk make html
50+
npm run build
51+
4552
- name: Setup Pages
4653
uses: actions/configure-pages@v2
54+
4755
- name: Upload artifact
4856
uses: actions/upload-pages-artifact@v1
4957
with:
5058
# Upload entire repository
5159
path: "."
60+
5261
- name: Deploy to GitHub Pages
5362
id: deployment
5463
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)