Try to only trigger build on documentation changes (#4365)

* Try to only trigger build on documentation changes
This commit is contained in:
Peter Hedenskog 2024-12-28 10:17:59 +01:00 committed by GitHub
parent e006db411f
commit dd4cd7ca5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 33 additions and 0 deletions

33
.github/workflows/netlify.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Deploy documentation to Netlify
on:
push:
branches:
- main
jobs:
check-docs-changes:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Check if /docs/ has changes
id: check_docs
run: |
git fetch origin main
changes=$(git diff --name-only HEAD~1 HEAD | grep '^docs/')
if [ -z "$changes" ]; then
echo "No changes in /docs/. Skipping deployment."
echo "deploy=false" >> $GITHUB_ENV
else
echo "Changes detected in /docs/. Proceeding with deployment."
echo "deploy=true" >> $GITHUB_ENV
- name: Deploy to Netlify
if: steps.check_docs.outputs.deploy == 'true'
env:
NETLIFY_BUILD_HOOK_URL: ${{ secrets.NETLIFY_BUILD_HOOK_URL }}
run: |
curl -X POST -d {} -H "Content-Type: application/json" $NETLIFY_BUILD_HOOK_URL