We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c67b39a commit f7b889eCopy full SHA for f7b889e
.github/workflows/jekyll-gh-pages.yml
@@ -50,8 +50,8 @@ jobs:
50
run: >
51
bundle exec jekyll build
52
--baseurl "${{ steps.pages.outputs.base_path }}"
53
- --source ./docs
54
- --destination ./_site
+ --destination "${{github.workspace}}/_site"
+ working-directory: ./docs
55
env:
56
JEKYLL_ENV: production
57
- name: Copy files to site
@@ -61,6 +61,8 @@ jobs:
61
cp ./crates/sdo-web/index.html ./_site/studio
62
cp ./crates/sdo-web/index.mjs ./_site/studio
63
cp -r ./target/doc ./_site/rustdoc
64
+ mkdir ./_site/pub
65
+ cp -r ./mappings ./_site/pub/mappings
66
- name: Upload artifact
67
uses: actions/upload-pages-artifact@v3
68
0 commit comments