Skip to content

Implement the FlareUI documentation #51

Implement the FlareUI documentation

Implement the FlareUI documentation #51

Workflow file for this run

name: Deploy DocC
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: macos-12
strategy:
fail-fast: false
matrix:
include:
- target: "Flare"
base_path: "flare"
- target: "FlareUI"
base_path: "flareui"
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
# Fetch all history for all branches and tags.
fetch-depth: 0
- name: Build and Push Generated Documentation
uses: space-code/oss-common-actions/.github/actions/publish_docc@main
with:
target: ${{ matrix.target }}
output_path: ${{ matrix.base_path }}
hosting_base_path: flare/${{ matrix.base_path }}