We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85b44cd commit a465598Copy full SHA for a465598
.github/workflows/deploy.yml
@@ -31,19 +31,15 @@ jobs:
31
run: ls -laR ./dist && du -hs ./dist
32
33
- name: Upload dist as artifact
34
+ id: deployment
35
uses: actions/upload-artifact@v4
36
with:
37
name: pages-artifact
- path: ./dist
38
-
39
- - name: Download artifact
40
- uses: actions/download-artifact@v4
41
- with:
42
- name: pages-artifact
43
+ path: ./dist/
44
45
- name: Deploy to GitHub Pages
46
- uses: actions/deploy-pages@v1
+ uses: actions/deploy-pages@v4
47
48
artifact_name: pages-artifact # MUST match what you uploaded
49
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments