mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-11 16:27:19 +10:00
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: CI - Build Site
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- gh-pages
|
|
workflow_dispatch:
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
name: Build Site and Deploy
|
|
runs-on: ubuntu-latest
|
|
if: github.repository_owner == 'dortania'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "recursive"
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: "yarn"
|
|
cache-dependency-path: ./yarn.lock
|
|
- name: Install Dependencies
|
|
run: yarn install --frozen-lockfile
|
|
working-directory: docs
|
|
- name: Build
|
|
run: yarn run build
|
|
working-directory: docs
|
|
- name: Upload artifact
|
|
uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: docs/.vuepress/dist/
|
|
deploy:
|
|
if: ${{ github.repository_owner == 'dortania' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|