Skip to content

Commit

Permalink
fix: rename build folder
Browse files Browse the repository at this point in the history
  • Loading branch information
berntpopp committed Dec 20, 2023
1 parent 082eec2 commit 1835380
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
run: Rscript -e 'bookdown::render_book("index.Rmd", "all")'
- uses: actions/upload-artifact@v4
with:
name: docs
path: docs/
name: build
path: build/
checkout-and-deploy:
runs-on: ubuntu-20.04
needs: bookdown
Expand All @@ -65,13 +65,13 @@ jobs:
uses: actions/download-artifact@v4
with:
# Artifact name
name: docs # optional
name: build # optional
# Destination path
path: docs/ # optional
path: build/ # optional
- name: Deploy to GitHub Pages
uses: Cecilapp/GitHub-Pages-deploy@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_dir: docs
build_dir: build
branch: gh-pages
2 changes: 1 addition & 1 deletion edit_docs/_bookdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ download:
- ["KidneyGenetics_documentation.docx", "DOCX"]
view: https://github.com/halbritter-lab/kidney-genetics/tree/master/docs/%s
edit: https://github.com/halbritter-lab/kidney-genetics/tree/master/edit_docs/%s
output_dir: "docs"
output_dir: "build"

0 comments on commit 1835380

Please sign in to comment.