Skip to content

Commit

Permalink
Fix Release Docs Workflow (#265)
Browse files Browse the repository at this point in the history
* Change run build to run docs:build🐛

* Pipeline Workflow changed
  • Loading branch information
TiagoKocevar committed Sep 3, 2024
1 parent 8d6713f commit 7ea4ca0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: "16"
node-version: "20"
cache: "npm"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: "./docs/package-lock.json"

- run: npm install
working-directory: ./docs

- run: npm run build
- run: npm run docs:build
working-directory: ./docs

- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist
publish_dir: ./docs/.vitepress/dist
cname: isi.oss.muenchen.de

0 comments on commit 7ea4ca0

Please sign in to comment.