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 4a7180a commit 3a4c695Copy full SHA for 3a4c695
.github/workflows/deploy.yml
@@ -32,6 +32,22 @@ jobs:
32
name: github-pages
33
url: ${{ steps.deployment.outputs.page_url }}
34
steps:
35
+
36
- name: Deploy to GitHub Pages
37
id: deployment
38
uses: actions/deploy-pages@v4
39
40
+ - name: Deploy to Netlify
41
+ uses: nwtgck/[email protected]
42
+ with:
43
+ publish-dir: './dist'
44
+ production-branch: main
45
+ github-token: ${{ secrets.GITHUB_TOKEN }}
46
+ deploy-message: "Deploy from GitHub Actions"
47
+ enable-pull-request-comment: false
48
+ enable-commit-comment: true
49
+ overwrites-pull-request-comment: true
50
+ env:
51
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
52
+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
53
+ timeout-minutes: 1
0 commit comments