Skip to content

Bump undici from 6.27.0 to 6.28.0 #503

Bump undici from 6.27.0 to 6.28.0

Bump undici from 6.27.0 to 6.28.0 #503

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
inputs:
dev_branch:
description: 'Change the build branch for deployment to personal website for PR previewing'
required: false
default: 'main'
type: string
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout main docs repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
ref: ${{ github.event.inputs.dev_branch }}
- name: Enable Corepack for Modern Yarn
run: corepack enable
- name: Setup Yarn
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build website
if: ${{ github.repository_owner == 'rancher' }}
run: yarn build
# Developer build used for PR reviews, deploys website with with a custom `baseUrl` for previewing
- name: Build website (dev)
if: ${{ github.repository_owner != 'rancher' && github.event_name == 'workflow_dispatch' }}
run: |
echo "replacing baseUrl in docusaurus.config.js with ${{ github.event.repository.name }}"
sed -i 's/baseUrl: '\''\//baseUrl: '\''\/${{ github.event.repository.name }}/' docusaurus.config.js
yarn build
- name: Setup Pages
uses: actions/configure-pages@1f0c5cde4bc74cd7e1254d0cb4de8d49e9068c7d # v4
- name: Create build artifact
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
with:
path: ./build
# Seperate the deploy job to isolate write permissions
deploy:
runs-on: ubuntu-latest
needs: build
# This is required to avoid https://github.com/actions/deploy-pages/issues/271
environment:
name: github-pages
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4