Skip to content

Commit 77a397d

Browse files
committed
Debug
1 parent 8229ad2 commit 77a397d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/gh-pages.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy RDoc site to Pages
22

33
on:
44
push:
5-
branches: [ 'update_style' ]
5+
branches: [ 'ruby-docs' ]
66
workflow_dispatch:
77

88
permissions:
@@ -21,6 +21,13 @@ jobs:
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@v4
24+
25+
- name: Checkout Ruby
26+
uses: actions/checkout@v4
27+
with:
28+
repository: ruby/ruby
29+
path: ruby
30+
2431
- name: Setup Ruby
2532
uses: ruby/setup-ruby@161cd54b698f1fb3ea539faab2e036d409550e3c # v1.187.0
2633
with:
@@ -31,7 +38,8 @@ jobs:
3138
uses: actions/configure-pages@v5
3239
- name: Build with RDoc
3340
# Outputs to the './_site' directory by default
34-
run: bundle exec rake rdoc
41+
#run: bundle exec rake rdoc
42+
run: bundle exec rdoc --root=ruby --include=ruby/doc --main=README.md --template=rorvswild --debug
3543
- name: Upload artifact
3644
uses: actions/upload-pages-artifact@v3
3745

0 commit comments

Comments
 (0)