Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ concurrency:
group: pages
cancel-in-progress: false

permissions:
contents: write

jobs:
# Build job
build:
Expand Down Expand Up @@ -46,6 +49,6 @@ jobs:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.PAT_DOCS }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/.vitepress/dist
cname: ev.xyz
3 changes: 3 additions & 0 deletions .github/workflows/docs_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn build
working-directory: docs

- name: Clear default git credentials
run: git config --global --unset http.https://github.com/.extraheader || true

- name: Deploy preview
uses: rossjrw/pr-preview-action@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Here you'll find comprehensive guides, and reference materials to help you make

## Building the site




To get started, clone the repository and run the following:

```bash
Expand Down
Loading