web pub
All checks were successful
/ build-web (push) Successful in 5m57s

This commit is contained in:
zeyus 2025-07-23 00:03:19 +02:00
parent 777acbc773
commit a931a6aa4c
Signed by: zeyus
GPG key ID: A836639BA719C614

View file

@ -37,7 +37,16 @@ jobs:
run: flutter pub get run: flutter pub get
- name: Build web - name: Build web
run: flutter build web --wasm --release run: flutter build web --wasm --release --base-href /shitman/
# if the /webpub mount exists, copy the build output there
- name: Copy build output to /webpub
run: |
if [ -d /webpub ]; then
cp -r build/web/* /webpub/
else
echo "No /webpub mount found, skipping copy."
fi
- name: List build output - name: List build output
run: ls -la build/web/ run: ls -la build/web/