fix: try to fix build again (#4001)

This commit is contained in:
ggurdin 2025-09-16 12:36:43 -04:00 committed by GitHub
parent 1f05ea0036
commit 52c44080d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 6 deletions

View file

@ -27,7 +27,11 @@ jobs:
- run: rm ./assets/vodozemac/.gitignore
- run: flutter pub get
- name: Build Release Web
run: ./scripts/build-web.sh
run: |
flutter config --enable-web
flutter clean
flutter pub get
flutter build web --dart-define=FLUTTER_WEB_CANVASKIT_URL=canvaskit/ --profile --source-maps
- name: Upload files
uses: actions/upload-artifact@v4

View file

@ -1,5 +0,0 @@
#!/bin/sh -ve
flutter config --enable-web
flutter clean
flutter pub get
flutter build web --dart-define=FLUTTER_WEB_CANVASKIT_URL=canvaskit/ --profile --source-maps