We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a421121 + bbad4cb commit 501b8b9Copy full SHA for 501b8b9
3 files changed
.github/workflows/pages.yml
@@ -0,0 +1,40 @@
1
+name: Deploy to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - 'docs/**'
9
+ workflow_dispatch:
10
11
+permissions:
12
+ contents: read
13
+ pages: write
14
+ id-token: write
15
16
+concurrency:
17
+ group: "pages"
18
+ cancel-in-progress: false
19
20
+jobs:
21
+ deploy:
22
+ environment:
23
+ name: github-pages
24
+ url: ${{ steps.deployment.outputs.page_url }}
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v4
29
30
+ - name: Setup Pages
31
+ uses: actions/configure-pages@v4
32
33
+ - name: Upload artifact
34
+ uses: actions/upload-pages-artifact@v3
35
+ with:
36
+ path: 'docs'
37
38
+ - name: Deploy to GitHub Pages
39
+ id: deployment
40
+ uses: actions/deploy-pages@v4
docs/CNAME
@@ -0,0 +1 @@
+mdflow.dev
0 commit comments