We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rake build_multi
1 parent fbe9f5b commit 3d72a3bCopy full SHA for 3d72a3b
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
18
doc-build-latest:
19
runs-on: ubuntu-latest
20
- name: Rails Doc Build
+ name: Rails Doc Build (latest)
21
steps:
22
- uses: actions/checkout@v3
23
with:
@@ -27,5 +27,18 @@ jobs:
27
ruby-version: 3.1
28
bundler-cache: true
29
- name: Doc Build
30
- run: |
31
- rake build
+ run: rake build
+
32
+ doc-build-others:
33
+ runs-on: ubuntu-latest
34
+ name: Rails Doc Build (older versions)
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ with:
38
+ submodules: true
39
+ - uses: ruby/setup-ruby@v1
40
41
+ ruby-version: 2.7
42
+ bundler-cache: true
43
+ - name: Doc Build
44
+ run: rake build_multi
0 commit comments