Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisbernard committed Sep 2, 2024
1 parent 8229ad2 commit 04eb310
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy RDoc site to Pages

on:
push:
branches: [ 'update_style' ]
branches: [ 'ruby-docs' ]
workflow_dispatch:

permissions:
Expand All @@ -21,6 +21,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Checkout Ruby
uses: actions/checkout@v4
with:
repository: ruby/ruby
path: ruby

- name: Setup Ruby
uses: ruby/setup-ruby@161cd54b698f1fb3ea539faab2e036d409550e3c # v1.187.0
with:
Expand All @@ -31,7 +38,14 @@ jobs:
uses: actions/configure-pages@v5
- name: Build with RDoc
# Outputs to the './_site' directory by default
run: bundle exec rake rdoc
#run: bundle exec rake rdoc
run: |
bundle
echo "rake generate"
rake generate
echo "rdoc"
bundle exec rdoc --root=ruby --include=ruby/doc --main=README.md --template=rorvswild --debug
ls -l
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

Expand Down

0 comments on commit 04eb310

Please sign in to comment.