mirror of https://github.com/folke/lazy.nvim.git
20 lines
414 B
YAML
20 lines
414 B
YAML
name: Docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'folke' }}
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: docs
|
|
- name: Generate Docs
|
|
shell: bash
|
|
run: gh workflow run "Deploy to Github Pages" --ref docs
|