We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7206f7c commit beafbf9Copy full SHA for beafbf9
.github/workflows/deploy.yml
@@ -0,0 +1,20 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main # Change this if you're using a different branch
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v2
14
15
+ - name: Deploy to GitHub Pages
16
+ uses: peaceiris/actions-gh-pages@v3
17
+ with:
18
+ github_token: ${{ secrets.GITHUB_TOKEN }}
19
+ publish_dir: ./ # Adjust if your site files are in a different directory
20
+ publish_branch: master # Change if you want to publish to a different branch
0 commit comments