Skip to content

Commit

Permalink
Merge branch 'master' into km/142-fix-2-elem-ds-creation
Browse files Browse the repository at this point in the history
  • Loading branch information
genmeblog authored Mar 24, 2024
2 parents 9f0a3c4 + f0d5a79 commit 42d00b7
Show file tree
Hide file tree
Showing 7 changed files with 4,711 additions and 5,616 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,24 @@ jobs:
deploy-docs:
runs-on: ubuntu-latest

# Only run this job if there were changes in the docs folder
paths:
- ./docs/*

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Check for changes in docs folder
id: docs_check
run: |
git fetch origin master
if [[ $(git diff --name-only origin/${{ github.event.repository.default_branch }} -- './docs') ]]; then
echo "There have been changes to the docs."
echo "docs_changed=true" >> $GITHUB_OUTPUT
else
echo "No changes to the docs."
echo "docs_changed=false" >> $GITHUB_OUTPUT
fi
- name: Deploy documentation
if: ${{ steps.docs_check.outputs.docs_changed == 'true' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs
Expand Down
Empty file added docs/.nojekyll
Empty file.
10,283 changes: 4,681 additions & 5,602 deletions pr-preview/pr-100/index.html

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pr-preview/pr-100/index_files/html-default0.js

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions pr-preview/pr-100/index_files/html-default1.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions pr-preview/pr-100/notebooks/custom.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
@import url(https://cdn.jsdelivr.net/npm/[email protected]/distr/fira_code.css);

/*-- scss:default --*/
$font-size-root: 0.8em;

/*-- scss:imports --*/

/*-- scss:rules --*/
.table {width:auto;}
.table {width:auto}

code {font-family: 'Fira Code Medium', monospace;}

.clay-dataset .table {
@extend .table-striped;
@extend .table-hover;
@extend .table-responsive;
}

0 comments on commit 42d00b7

Please sign in to comment.