chore(deps): bump the production-dependencies group with 6 updates #260
Workflow file for this run
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: [main] | |
| pull_request: | |
| concurrency: | |
| group: pages-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-docs: | |
| name: Build docs site and storybooks | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run site:build | |
| env: | |
| BASE_PATH: ${{ github.event_name != 'pull_request' && '/storybook-addon-performance-panel/' || '' }} | |
| - run: npm run build-storybook -w @github-ui/examples-react | |
| - run: npm run build-storybook -w @github-ui/examples-html | |
| - name: Merge into single site | |
| run: | | |
| mkdir -p _site/examples | |
| cp -r packages/website/dist/client/* _site/ | |
| cp -r packages/examples-react/storybook-static _site/examples/react | |
| cp -r packages/examples-html/storybook-static _site/examples/universal | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: site | |
| path: _site/ | |
| deploy: | |
| name: Deploy to Pages | |
| needs: build-docs | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: ${{ github.event_name == 'pull_request' && 'github-pages-preview' || 'github-pages' }} | |
| url: ${{ steps.deploy.outputs.page_url }} | |
| steps: | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: site | |
| path: site | |
| - uses: actions/configure-pages@v5 | |
| - uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: site | |
| - name: Deploy to GitHub Pages | |
| id: deploy | |
| uses: actions/deploy-pages@v4 | |
| with: | |
| preview: ${{ github.event_name == 'pull_request' }} |