chore(deps): update dependency vitepress to v1.0.0-rc.39 (#376) #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- docs/** | |
concurrency: | |
group: docs | |
cancel-in-progress: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
environment: | |
name: github-pages | |
url: https://shulker.jeremylvln.fr/ | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install tools | |
uses: ./.github/actions/install-tools | |
with: | |
install-rust: false | |
install-java: false | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Build documentation | |
run: npx nx build docs && touch docs/src/.vitepress/dist/.nojekyll | |
- name: Push build output to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: docs/src/.vitepress/dist | |
clean: true | |
clean-exclude: | | |
helm-charts/* |