Skip to content

Commit 47bedd5

Browse files
committed
Merge branch 'main' into support-pin-write-with-files
2 parents e23b86c + d072260 commit 47bedd5

File tree

23 files changed

+8
-614
lines changed

23 files changed

+8
-614
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
uses: actions/upload-artifact@v3
152152
with:
153153
name: docs-html
154-
path: docs-quarto/_site
154+
path: docs/_site
155155

156156
preview-docs:
157157
name: "Preview Docs:"
@@ -163,7 +163,7 @@ jobs:
163163
- uses: actions/download-artifact@v3
164164
with:
165165
name: docs-html
166-
path: docs-quarto/_site
166+
path: docs/_site
167167

168168
# Determine the release name ---
169169

@@ -193,7 +193,7 @@ jobs:
193193
run: |
194194
npm install -g netlify-cli
195195
# push main branch to production, others to preview --
196-
netlify deploy --dir=docs-quarto/_site --alias="${ALIAS}"
196+
netlify deploy --dir=docs/_site --alias="${ALIAS}"
197197
198198
env:
199199
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
@@ -222,11 +222,11 @@ jobs:
222222
- uses: actions/download-artifact@v3
223223
with:
224224
name: docs-html
225-
path: docs-quarto/_site
225+
path: docs/_site
226226
- uses: peaceiris/actions-gh-pages@v3
227227
with:
228228
github_token: ${{ secrets.GITHUB_TOKEN }}
229-
publish_dir: docs-quarto/_site
229+
publish_dir: docs/_site
230230

231231
release-pypi:
232232
name: "Release to pypi"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ test-rsc:
3232
pytest pins -m "fs_rsc"
3333

3434
docs-build:
35-
cd docs-quarto && python -m quartodoc build --verbose
36-
cd docs-quarto && quarto render
35+
cd docs && python -m quartodoc build --verbose
36+
cd docs && quarto render
3737

3838
docs-clean:
3939
rm -rf docs/_build docs/api/api_card

docs-quarto/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs-quarto/logo.png

-149 KB
Binary file not shown.

docs/.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# autosummary generated doc pages
2-
api/api_card
1+
/.quarto/

docs/_config.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)