Skip to content

Commit 3ad6597

Browse files
committed
try to swap the 2 build tasks
1 parent 67bc7b0 commit 3ad6597

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/documentation.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
steps:
1616
- name: Git checkout
1717
uses: actions/checkout@v4 # https://github.com/actions/checkout
18-
- name: Setup Pages
19-
uses: actions/configure-pages@v5
20-
- name: Build Jekyll documentation
21-
uses: actions/jekyll-build-pages@v1 # https://github.com/actions/jekyll-build-pages
22-
with:
23-
destination: output/
2418
- name: Ruby setup
2519
uses: ruby/setup-ruby@v1
2620
with:
2721
bundler-cache: true
2822
- name: Build YARD documentation
2923
id: build
30-
run: bundle exec yard doc --output-dir /github/workspace/output/yard/
24+
run: bundle exec yard doc
25+
- name: Setup Pages
26+
uses: actions/configure-pages@v5
27+
- name: Build Jekyll documentation
28+
uses: actions/jekyll-build-pages@v1 # https://github.com/actions/jekyll-build-pages
29+
with:
30+
destination: output/
3131
- name: Upload static files as artifact
3232
id: deployment
3333
uses: actions/upload-pages-artifact@v3 # https://github.com/actions/upload-pages-artifact

0 commit comments

Comments
 (0)