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 7dbdbcf commit 4499cdcCopy full SHA for 4499cdc
.github/workflows/ci.yml
@@ -91,4 +91,15 @@ jobs:
91
upload_url: ${{ steps.create_release.outputs.upload_url }}
92
asset_path: ./README.md
93
asset_name: README.md
94
- asset_content_type: text/markdown
+ asset_content_type: text/markdown
95
+
96
+ - name: Deploy to GitHub Pages
97
+ run: |
98
+ git config --global user.name 'GitHub Actions'
99
+ git config --global user.email '[email protected]'
100
+ git checkout --orphan gh-pages
101
+ git rm -rf .
102
+ cp -r dist/* .
103
+ git add .
104
+ git commit -m "Deploy to GitHub Pages"
105
+ git push -f origin gh-pages
0 commit comments