fix(ci): use double-quoted string for if condition to fix YAML parse error

This commit is contained in:
SaelixCode
2026-03-22 22:04:49 -04:00
parent dc79683b01
commit f5c5eda30a
+1 -1
View File
@@ -164,7 +164,7 @@ jobs:
update-screenshots:
runs-on: ubuntu-latest
# Only on develop pushes; skip bot commits to avoid an infinite loop
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, 'docs: refresh screenshots') }}
if: "github.event_name == 'push' && github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, 'docs: refresh screenshots')"
needs: [ backend, frontend ]
permissions:
contents: write