Fixed exporter

This commit is contained in:
2025-12-26 22:44:49 +00:00
parent da28b5767d
commit ce92998667

View File

@@ -59,14 +59,14 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
if [ ! -d "export" ]; then if [ ! -d "dist" ]; then
echo "❌ export/ folder not found in repo root" echo "❌ dist/ folder not found in repo root"
ls -la ls -la
exit 1 exit 1
fi fi
rm -f "Computing:Box Website.zip" rm -f "Computing:Box Website.zip"
(cd export && zip -r "../Computing:Box Website.zip" .) (cd dist && zip -r "../Computing:Box Website.zip" .)
test -s "Computing:Box Website.zip" test -s "Computing:Box Website.zip"
ls -lh "Computing:Box Website.zip" ls -lh "Computing:Box Website.zip"