Skip to content

Commit e35e509

Browse files
authored
Update deploy.yml
1 parent 3c73f58 commit e35e509

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file was created automatically with `myst init --gh-pages` 🪄 💚
2+
13
name: MyST GitHub Pages Deploy
24
on:
35
push:
@@ -28,18 +30,15 @@ jobs:
2830
- uses: actions/checkout@v4
2931
- name: Setup Pages
3032
uses: actions/configure-pages@v3
31-
# Set up Python
3233
- name: Setup Python
3334
uses: actions/setup-python@v4
3435
with:
3536
python-version: '3.10'
36-
37-
# Install Python dependencies
3837
- name: Install Python dependencies
3938
run: |
4039
python -m venv venv
4140
source venv/bin/activate
42-
pip install -r binder/requirements.txt
41+
pip install -r binder/requirements.txt
4342
- uses: actions/setup-node@v4
4443
with:
4544
node-version: 18.x
@@ -48,9 +47,9 @@ jobs:
4847
- name: Build HTML Assets
4948
run: myst build --execute --html
5049
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v1
50+
uses: actions/upload-pages-artifact@v3
5251
with:
5352
path: './_build/html'
5453
- name: Deploy to GitHub Pages
5554
id: deployment
56-
uses: actions/deploy-pages@v2
55+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)