Skip to content

Commit 00e371e

Browse files
fix
1 parent 2197420 commit 00e371e

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,23 @@ jobs:
8484
cp dist/index.html dist/404.html
8585
touch dist/.nojekyll
8686
87+
- name: Upload website artifact
88+
uses: actions/upload-artifact@v4
89+
with:
90+
name: website-dist
91+
path: dist
92+
retention-days: 1
93+
94+
deploy:
95+
runs-on: ubuntu-latest
96+
needs: build
97+
steps:
98+
- name: Download website artifact
99+
uses: actions/download-artifact@v4
100+
with:
101+
name: website-dist
102+
path: dist
103+
87104
- name: Checkout Pages repository
88105
uses: actions/checkout@v4
89106
with:

0 commit comments

Comments
 (0)