* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
22 lines
510 B
YAML
22 lines
510 B
YAML
name: 🌿 Publish Docs
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: [self-hosted, medium]
|
|
if: ${{ github.event_name == 'push' && contains(github.ref, 'refs/heads/main') && github.run_number > 1 }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Publish Docs
|
|
working-directory: .
|
|
env:
|
|
FERN_TOKEN: ${{ secrets.FERN_TOKEN }}
|
|
run: fern generate --docs --log-level debug
|