We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2aa72 commit d597e43Copy full SHA for d597e43
.github/workflows/deploy.yml
@@ -25,8 +25,10 @@ jobs:
25
REACT_APP_EMAILJS_SERVICE_ID: ${{ secrets.REACT_APP_EMAILJS_SERVICE_ID }}
26
REACT_APP_EMAILJS_TEMPLATE_ID: ${{ secrets.REACT_APP_EMAILJS_TEMPLATE_ID }}
27
REACT_APP_EMAILJS_PUBLIC_KEY: ${{ secrets.REACT_APP_EMAILJS_PUBLIC_KEY }}
28
- - name: Deploy to GitHub Pages
29
- uses: JamesIves/github-pages-deploy-action@v4
+ - name: Upload Artifact
+ uses: actions/upload-pages-artifact@v3
30
with:
31
- folder: build
32
- branch: gh-pages
+ path: ./build
+ - name: Deploy to GitHub Pages
33
+ id: deployment
34
+ uses: actions/deploy-pages@v4
0 commit comments