We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a6cd730 + 8ea457f commit acf1e75Copy full SHA for acf1e75
1 file changed
entrypoint.sh
@@ -92,7 +92,11 @@ else
92
fi
93
94
# Copy dotorg assets to /assets
95
-rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
+if [[ -d "$GITHUB_WORKSPACE/$ASSETS_DIR/" ]]; then
96
+ rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
97
+else
98
+ echo "ℹ︎ No assets directory found; skipping asset copy"
99
+fi
100
101
# Add everything and commit to SVN
102
# The force flag ensures we recurse into subdirectories even if they are already added
0 commit comments