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 5bb9272 commit ad5f5f8Copy full SHA for ad5f5f8
.github/workflows/deploy.yml
@@ -43,7 +43,16 @@ jobs:
43
index.html
44
matf.css
45
46
- # Deploy
+ # Deploy to Netlify
47
- name: Deploy to Netlify
48
+ env:
49
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
50
run: |
- npx netlify-cli deploy --prod --token ${{ secrets.NETLIFY_TOKEN }} --site matfdraft --dir ./
51
+ npx netlify-cli deploy --prod --site matfdraft --dir ./
52
+
53
+ # Deploy to Github Pages
54
+ - name: Deploy to GitHub Pages
55
+ uses: peaceiris/actions-gh-pages@v3
56
+ with:
57
+ github_token: ${{ secrets.GITHUB_TOKEN }}
58
+ publish_dir: ./
0 commit comments