Skip to content

Commit

Permalink
ci: correct name of docs build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Sep 28, 2023
1 parent f6dec59 commit ab0b22d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
npm install -g netlify-cli
# push main branch to production, others to preview --
if [ "${ALIAS}" == "main" ]; then
netlify deploy --dir=docs/_build --alias="main"
netlify deploy --dir=docs/_site --alias="main"
else
netlify deploy --dir=docs/_build --alias="${ALIAS}"
netlify deploy --dir=docs/_site --alias="${ALIAS}"
fi
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down

0 comments on commit ab0b22d

Please sign in to comment.