File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Deploy RDoc site to Pages
2
2
3
3
on :
4
4
push :
5
- branches : [ 'update_style ' ]
5
+ branches : [ 'ruby-docs ' ]
6
6
workflow_dispatch :
7
7
8
8
permissions :
21
21
steps :
22
22
- name : Checkout
23
23
uses : actions/checkout@v4
24
+
25
+ - name : Checkout Ruby
26
+ uses : actions/checkout@v4
27
+ with :
28
+ repository : ruby/ruby
29
+ path : ruby
30
+
24
31
- name : Setup Ruby
25
32
uses : ruby/setup-ruby@161cd54b698f1fb3ea539faab2e036d409550e3c # v1.187.0
26
33
with :
31
38
uses : actions/configure-pages@v5
32
39
- name : Build with RDoc
33
40
# Outputs to the './_site' directory by default
34
- run : bundle exec rake rdoc
41
+ # run: bundle exec rake rdoc
42
+ run : |
43
+ ls -l
44
+ gem install markdown
45
+ bundle exec rdoc --root=ruby --include=ruby/doc --main=README.md --template=rorvswild --debug
46
+ ls -l
35
47
- name : Upload artifact
36
48
uses : actions/upload-pages-artifact@v3
37
49
You can’t perform that action at this time.
0 commit comments