chore: generated config files #151
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
| # ************** This file is automatically generated. Any modifications will be lost ************************ | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| build: | ||
| name: Build | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4.0.0 | ||
| with: | ||
| run_install: true | ||
| - name: Install Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: latest | ||
| cache: pnpm | ||
| registry-url: https://registry.npmjs.org/ | ||
| - run: pnpm --if-present prepare-docs | ||
| - name: Build pages Jekyll | ||
| uses: actions/jekyll-build-pages@v1 | ||
| with: | ||
| source: docs | ||
| destination: _site | ||
| - name: Upload pages artifact | ||
| uses: actions/upload-pages-artifact@v3 | ||
| deploy: | ||
| name: Deploy | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| needs: build | ||
| permissions: | ||
| pages: write | ||
| id-token: write | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
| name: Pages | ||
| on: | ||
| workflow_dispatch: | ||
| permissions: | ||