File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : GitHub Pages Deploy
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ jobs :
7
+ gh-pages-deploy :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - name : Set up Ruby
12
+ uses : ruby/setup-ruby@v1
13
+ with :
14
+ ruby-version : 3.0
15
+ bundler-cache : true
16
+ - name : Jekyll Build
17
+ run : bundle exec jekyll build
18
+ - name : Deploy
19
+ uses : peaceiris/actions-gh-pages@v3
20
+ with :
21
+ personal_token : ${{ secrets.GITHUB_TOKEN }}
22
+ publish_dir : ./_site
Original file line number Diff line number Diff line change 1
1
# [ railsdoc.github.io] ( https://railsdoc.github.io/ )
2
2
3
- [ ![ Build Status] ( https://travis-ci.com/railsdoc/railsdoc.github.io.svg?branch=page-source )] ( https://travis-ci.com/railsdoc/railsdoc.github.io )
3
+ [ ![ Build Status] ( https://travis-ci.com/railsdoc/railsdoc.github.io.svg?branch=main )] ( https://travis-ci.com/railsdoc/railsdoc.github.io )
4
+ [ ![ Netlify Status] ( https://api.netlify.com/api/v1/badges/c964029a-6d5a-4f3a-95e9-d35830a2fe83/deploy-status )] ( https://app.netlify.com/sites/railsdoc-preview/deploys )
4
5
5
6
railsdoc.github.io is yet another Rails API documentation website.
6
7
You can’t perform that action at this time.
0 commit comments