File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7- # Allows a run of this workflow to be triggerred manually from the Actions tab
8- workflow_dispatch :
7+ # - source
8+ # It is highly recommended that you only run this action on push to a
9+ # specific branch, eg. master or source (if on *.github.io repo)
10+
11+ workflow_dispatch : # Allows a run of this workflow to be triggerred manually from the Actions tab
912
1013jobs :
1114 jekyll :
12- runs-on : ubuntu-latest # can change this to ubuntu-latest if you prefer
15+ runs-on : ubuntu-latest
1316 steps :
1417 - name : 📂 setup
15- uses : actions/checkout@v2
18+ uses : actions/checkout@v3
1619 # include the lines below if you are using jekyll-last-modified-at
1720 # or if you would otherwise need to fetch the full commit history
1821 # however this may be very slow for large repositories!
2225 - name : 💎 setup ruby
2326 uses : ruby/setup-ruby@v1
2427 with :
25- ruby-version : 2.6 # can change this to 2.7 or whatever version you prefer
28+ ruby-version : 2.7 # can change this to whatever version you prefer
2629
2730 - name : 🔨 install dependencies & build site
2831 uses : limjh16/jekyll-action-ts@v2
3235 #
3336 # format_output: true
3437 # ## Uses prettier https://prettier.io to format jekyll output HTML.
38+ # ## To disable, just leave this commented out, prettier is disabled by default. https://github.com/limjh16/jekyll-action-ts/issues/12
3539 #
3640 # prettier_opts: '{ "useTabs": true }'
3741 # ## Sets prettier options (in JSON) to format output HTML. For example, output tabs over spaces.
Original file line number Diff line number Diff line change 7979 # It is highly recommended that you only run this action on push to a
8080 # specific branch, eg. master or source (if on *.github.io repo)
8181
82+ workflow_dispatch: # Allows a run of this workflow to be triggerred manually from the Actions tab
83+
8284jobs:
8385 jekyll:
8486 runs-on: ubuntu-latest
8587 steps:
8688 - name: 📂 setup
87- uses: actions/checkout@v2
88-
89+ uses: actions/checkout@v3
8990 # include the lines below if you are using jekyll-last-modified-at
9091 # or if you would otherwise need to fetch the full commit history
9192 # however this may be very slow for large repositories!
9293 # with:
9394 # fetch-depth: '0'
95+
9496 - name: 💎 setup ruby
9597 uses: ruby/setup-ruby@v1
9698 with:
97- ruby-version: 2.6 # can change this to 2.7 or whatever version you prefer
99+ ruby-version: 2.7 # can change this to whatever version you prefer
98100
99101 - name: 🔨 install dependencies & build site
100102 uses: limjh16/jekyll-action-ts@v2
@@ -104,6 +106,7 @@ jobs:
104106 #
105107 # format_output: true
106108 ### Uses prettier https://prettier.io to format jekyll output HTML.
109+ ### To disable, just leave this commented out, prettier is disabled by default. https://github.com/limjh16/jekyll-action-ts/issues/12
107110 #
108111 # prettier_opts: '{ "useTabs": true }'
109112 ### Sets prettier options (in JSON) to format output HTML. For example, output tabs over spaces.
You can’t perform that action at this time.
0 commit comments