Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Dec 28, 2024
1 parent cb62353 commit 2f53ee9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/netlify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ jobs:
changes=$(git diff --name-only HEAD~1 HEAD | grep '^docs/' || true)
if [ -z "$changes" ]; then
echo "No changes in /docs/. Skipping deployment."
echo "deploy=false" >> $GITHUB_ENV
echo "deploy=false" >> $GITHUB_OUTPUT
else
echo "Changes detected in /docs/. Proceeding with deployment."
echo "deploy=true" >> $GITHUB_ENV
echo "deploy=true" >> $GITHUB_OUTPUT
fi

- name: Deploy to Netlify
if: steps.check_docs.outputs.deploy == 'true'
env:
Expand Down

0 comments on commit 2f53ee9

Please sign in to comment.