mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-08-19 15:51:03 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
414 B
YAML
19 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@v5
|
|
with:
|
|
ref: docs
|
|
- name: Generate Docs
|
|
shell: bash
|
|
run: gh workflow run "Deploy to Github Pages" --ref docs
|