We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9588e95 commit dc73c7dCopy full SHA for dc73c7d
1 file changed
.github/workflows/deploy.yml
@@ -27,8 +27,23 @@ jobs:
27
- name: Build
28
run: GITHUB_PAGES=true npm run build
29
30
+ - name: Upload artifact
31
+ uses: actions/upload-artifact@v4
32
+ with:
33
+ name: dist
34
+ path: dist
35
+
36
+ deploy:
37
+ needs: build
38
+ runs-on: ubuntu-latest
39
+ steps:
40
+ - name: Download artifact
41
+ uses: actions/download-artifact@v4
42
43
44
45
- name: Deploy
46
uses: peaceiris/actions-gh-pages@v4
47
with:
48
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./dist
49
+ publish_dir: ./
0 commit comments