mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Include dependent workflow and github action as part of the path check for when to trigger the workflow.
18 lines
326 B
YAML
18 lines
326 B
YAML
name: Publish Docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'docs/**'
|
|
- .github/workflows/publish-documentation.yml
|
|
- .github/workflows/deploy-docs.yml
|
|
- .github/workflows/build-docs/**
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
uses: ./.github/workflows/deploy-docs.yml
|