Skip to content

Commit 36e1fb1

Browse files
committed
Updates file copy logic to include specific HTML files
Adds explicit file copying of index.html, index-fr.html, and index-en.html to ensure all language-specific HTML files are included in the 360 folder. Also adds debug logging to verify file contents before and after copying.
1 parent 4a48fc1 commit 36e1fb1

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/merge-cvclaude-to-360.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,14 @@ jobs:
4545
rm -rf 360
4646
# Create 360 folder
4747
mkdir -p 360
48-
# Copy ONLY the built HTML files and minified CSS to 360 folder
49-
cp cvclaude-build/*.html cvclaude-build/*.min.css 360/ 2>/dev/null || true
48+
# List files to debug
49+
echo "Files in cvclaude-build after build:"
50+
ls -la cvclaude-build/
51+
# Copy the built HTML files and minified CSS to 360 folder
52+
cp cvclaude-build/index.html cvclaude-build/index-fr.html cvclaude-build/index-en.html cvclaude-build/style.min.css 360/ 2>/dev/null || true
53+
# List files in 360 folder to verify
54+
echo "Files copied to 360 folder:"
55+
ls -la 360/
5056
# Clean up cvclaude-build directory
5157
rm -rf cvclaude-build
5258

0 commit comments

Comments
 (0)