2024-11-06 20:36:08 +01:00
|
|
|
name: Docsite and Storybook CI/CD
|
|
|
|
|
|
|
|
run-name: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && 'Build and Deploy' || 'Test Build' }} Docsite and Storybook
|
2024-11-06 19:45:21 +01:00
|
|
|
|
|
|
|
env:
|
2024-11-14 06:06:48 +01:00
|
|
|
NODE_VERSION: 22
|
2024-11-06 19:45:21 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
workflow_dispatch:
|
2024-11-06 20:36:08 +01:00
|
|
|
# Also run any time a PR is opened targeting the docs or storybook resources
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- "docs/**"
|
|
|
|
- "storybook/**"
|
|
|
|
- "**/*.story.*"
|
|
|
|
- "**/*.stories.*"
|
|
|
|
- ".github/workflows/deploy-docsite.yml"
|
2024-11-16 01:16:12 +01:00
|
|
|
- "Taskfile.yml"
|
2024-11-06 19:45:21 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Docsite
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: ${{env.NODE_VERSION}}
|
2024-11-15 21:19:31 +01:00
|
|
|
- name: Install Task
|
|
|
|
uses: arduino/setup-task@v2
|
|
|
|
with:
|
|
|
|
version: 3.x
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2024-11-06 19:45:21 +01:00
|
|
|
- name: Install yarn
|
|
|
|
run: |
|
|
|
|
corepack enable
|
|
|
|
yarn install
|
|
|
|
- name: Build docsite
|
2024-11-15 21:19:31 +01:00
|
|
|
run: task docsite:build:public
|
2024-11-06 19:45:21 +01:00
|
|
|
- name: Upload Build Artifact
|
2024-11-06 20:36:08 +01:00
|
|
|
# Only upload the build artifact when pushed to the main branch
|
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
2024-11-06 19:45:21 +01:00
|
|
|
uses: actions/upload-pages-artifact@v3
|
|
|
|
with:
|
|
|
|
path: docs/build
|
|
|
|
deploy:
|
|
|
|
name: Deploy to GitHub Pages
|
2024-11-06 20:36:08 +01:00
|
|
|
# Only deploy when pushed to the main branch
|
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
2024-11-06 19:45:21 +01:00
|
|
|
needs: build
|
|
|
|
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
|
|
|
|
permissions:
|
|
|
|
pages: write # to deploy to Pages
|
|
|
|
id-token: write # to verify the deployment originates from an appropriate source
|
|
|
|
|
|
|
|
# Deploy to the github-pages environment
|
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v4
|