We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a91409 commit 0cbc78eCopy full SHA for 0cbc78e
.github/workflows/deploy.yml
@@ -29,8 +29,14 @@ jobs:
29
- name: Build the app
30
run: npm run build
31
32
- - name: Deploy to GitHub Pages
33
- uses: peaceiris/actions-gh-pages@v3
+ - name: Configure GitHub Pages
+ uses: actions/configure-pages@v3
34
+
35
+ - name: Upload artifact for GitHub Pages
36
+ uses: actions/upload-pages-artifact@v1
37
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./dist
38
+ path: ./dist
39
40
+ - name: Deploy to GitHub Pages
41
+ id: deploy
42
+ uses: actions/deploy-pages@v1
package.json
@@ -1,5 +1,5 @@
1
{
2
- "name": "3dfolio",
+ "name": "khemssharma.github.io",
3
"private": true,
4
"version": "0.0.0",
5
"type": "module",
0 commit comments