We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a9eb4 commit c65bc2fCopy full SHA for c65bc2f
.github/workflows/create-sample-releases.yml
@@ -104,6 +104,13 @@ jobs:
104
echo "📝 Changed files:"
105
echo "$CHANGED_FILES"
106
107
+ # Check if the workflow file itself was changed
108
+ if echo "$CHANGED_FILES" | grep -q "^\.github/workflows/create-sample-releases\.yml$"; then
109
+ echo "🔧 Workflow file changed - forcing rebuild of all samples"
110
+ echo "SHOULD_BUILD=true" >> $GITHUB_ENV
111
+ exit 0
112
+ fi
113
+
114
SHOULD_BUILD=false
115
116
for config_dir in $CONFIG_DIRS; do
0 commit comments