File tree Expand file tree Collapse file tree 3 files changed +26
-21
lines changed
Expand file tree Collapse file tree 3 files changed +26
-21
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push
5+
6+ jobs :
7+ jekyll :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : actions/setup-node@v2
12+ with :
13+ node-version : ' 14'
14+ - uses : ruby/setup-ruby@v1
15+ with :
16+ ruby-version : 2.5 # Not needed with a .ruby-version file
17+ bundler-cache : true # runs 'bundle install' and caches installed gems automatically
18+ - run : npm install
19+ - run : npm run build
20+ - uses : crazy-max/ghaction-github-pages@v2
21+ with :
22+ target_branch : master
23+ build_dir : _site
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ exclude: [
3434 ' _assets' ,
3535 ' Gemfile' ,
3636 ' Gemfile.lock' ,
37+ ' vendor' ,
3738]
3839keep_files : [
3940 ' dist' ,
You can’t perform that action at this time.
0 commit comments