chore(main): release codex-pooler 0.4.2 #408
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: docs | |
| on: | |
| pull_request: | |
| push: | |
| workflow_dispatch: | |
| concurrency: | |
| group: docs-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26.3.1' | |
| cache: npm | |
| cache-dependency-path: docs-site/package-lock.json | |
| - name: Install docs dependencies | |
| run: npm ci --prefix docs-site | |
| - name: Check docs | |
| run: npm run check --prefix docs-site | |
| - name: Build docs | |
| run: npm run build --prefix docs-site | |
| deploy: | |
| if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }} | |
| needs: check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26.3.1' | |
| cache: npm | |
| cache-dependency-path: docs-site/package-lock.json | |
| - name: Install docs dependencies | |
| run: npm ci --prefix docs-site | |
| - name: Check docs | |
| run: npm run check --prefix docs-site | |
| - name: Build docs | |
| run: npm run build --prefix docs-site | |
| - name: Configure Pages | |
| uses: actions/configure-pages@v6.0.0 | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v5.0.0 | |
| with: | |
| path: docs-site/dist | |
| - name: Deploy Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5.0.0 |