fix tailwind css builder path

This commit is contained in:
Kevin Pham
2023-12-06 10:26:49 -06:00
parent 9d6cedb2a5
commit 0e940ec217

View File

@@ -4,7 +4,7 @@ on:
push:
paths:
- "handlers/form.html"
- "proxychain/responsemodifiers/generate_readable_outline.html"
- "proxychain/responsemodifiers/vendor/generate_readable_outline.html"
workflow_dispatch:
jobs:
@@ -30,7 +30,7 @@ jobs:
-
name: Commit generated stylesheet
run: |
if git diff --quiet cmd/styles.css; then
if git diff --quiet handlers/styles.css; then
echo "No changes to commit."
exit 0
else
@@ -40,4 +40,4 @@ jobs:
git add cmd
git commit -m "Generated stylesheet"
git push
fi
fi