mirror of https://github.com/snachodog/mybuddy.git
Only deploy docs when docs have changed
This commit is contained in:
parent
e51398aa4d
commit
2ae5a258a2
|
@ -45,7 +45,14 @@ jobs:
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- name: Get changed files
|
||||||
|
id: changed-files
|
||||||
|
uses: tj-actions/changed-files@v34
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
docs/**
|
||||||
- name: Deploy docs
|
- name: Deploy docs
|
||||||
|
if: steps.changed-files.outputs.any_changed == 'true'
|
||||||
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.github_token }}
|
GITHUB_TOKEN: ${{ secrets.github_token }}
|
||||||
|
|
Loading…
Reference in New Issue