Update vigilante.md #5
This file contains hidden or 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: Deploy Docs | |
| on: | |
| push: | |
| branches: [shiror.ren] | |
| pull_request: | |
| branches: [shiror.ren] | |
| workflow_dispatch: | |
| concurrency: | |
| group: docs-deployer | |
| cancel-in-progress: true | |
| jobs: | |
| deploy-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Git Config | |
| run: | | |
| git config --global core.quotePath false | |
| git config --global core.autocrlf false | |
| git config --global core.safecrlf true | |
| git config --global core.ignorecase false | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: latest | |
| - name: Install Dependencies | |
| run: pnpm i --no-frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Deploy Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: docs-dist | |
| folder: build | |
| clean: true | |
| single-commit: true |