File tree 3 files changed +22
-15
lines changed 3 files changed +22
-15
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name : Jekyll deploy
4
+
5
+ # Controls when the action will run.
6
+ on :
7
+ # Triggers the workflow on push or pull request events but only for the master branch
8
+ push :
9
+ branches : [ main ]
10
+
11
+ jobs :
12
+ build_and_deploy :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v1
16
+ - name : Build & Deploy to GitHub Pages
17
+ env :
18
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
19
+ GITHUB_REPOSITORY : ${{ secrets.GITHUB_REPOSITORY }}
20
+ GITHUB_ACTOR : ${{ secrets.GITHUB_ACTOR }}
21
+ uses : BryanSchuetz/jekyll-deploy-gh-pages@c65ae23c7f03c25370004f16cba53110df1a4da4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ pagination:
37
37
permalink : /blog/:num/
38
38
sort_field : ' date'
39
39
sort_reverse : true
40
+ destination : ./build
40
41
41
42
# Exclude from processing.
42
43
# The following items will not be processed, by default. Create a custom list
You can’t perform that action at this time.
0 commit comments