Skip to content

Deploy GitHub Pages #28

Deploy GitHub Pages

Deploy GitHub Pages #28

Workflow file for this run

name: Deploy GitHub Pages
on:
workflow_run:
workflows: ['Run Unit Tests']
types: ['completed']
workflow_dispatch:
inputs:
page-root-directory:
description: Page root directory
default: './dist/'
type: string
permissions:
contents: read
pages: write
checks: write
id-token: write
jobs:
deploy:
name: Deploy Page
env:
page-root-directory: './dist/'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact (Automatic)
if: (!github.event.inputs.page-root-directory)
uses: actions/upload-pages-artifact@v3
with:
path: ${{env.page-root-directory}}
- name: Upload artifact (Workflow Dispatch)
if: (github.event.inputs.page-root-directory)
uses: actions/upload-pages-artifact@v3
with:
path: ${{github.event.inputs.page-root-directory}}
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4