File tree 8 files changed +59
-0
lines changed
8 files changed +59
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : github pages
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master # Set a branch to deploy
7
+
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-18.04
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ with :
14
+ submodules : true # Fetch Hugo themes (true OR recursive)
15
+ fetch-depth : 0 # Fetch all history for .GitInfo and .Lastmod
16
+
17
+ - name : Setup Hugo
18
+ uses : peaceiris/actions-hugo@v2
19
+ with :
20
+ hugo-version : ' latest'
21
+ # extended: true
22
+
23
+ - name : Build
24
+ run : hugo --minify
25
+
26
+ - name : Deploy
27
+ uses : peaceiris/actions-gh-pages@v3
28
+ with :
29
+ github_token : ${{ secrets.GITHUB_TOKEN }}
30
+ publish_dir : ./public
Original file line number Diff line number Diff line change
1
+ .DS_Store
2
+
3
+ public
Original file line number Diff line number Diff line change
1
+ [submodule "themes/mini "]
2
+ path = themes/mini
3
+ url = https://github.com/nodejh/hugo-theme-mini
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : " {{ replace .Name " -" " " | title }}"
3
+ date : {{ .Date }}
4
+ draft : true
5
+ ---
6
+
Original file line number Diff line number Diff line change
1
+ baseURL = " http://example.org/"
2
+ languageCode = " fa"
3
+ title = " var یا"
4
+ theme = " mini"
5
+
6
+ [params ]
7
+ bio = " وبلاگی برای جاوااسکریپت و نود جیاس"
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : " My First Post"
3
+ date : 2021-04-27T14:42:17+04:30
4
+ draft : false
5
+ ---
6
+
7
+ This is my first post with hugo.
8
+
9
+ Bye!
You can’t perform that action at this time.
0 commit comments