Corrected installation
Some checks failed
Pull Request Pipeline / lint (pull_request) Failing after 1m33s
Pull Request Pipeline / test (pull_request) Has been skipped

This commit is contained in:
2025-11-19 10:22:55 +01:00
parent 17c14dd230
commit e108bb41f6

View File

@@ -18,13 +18,12 @@ jobs:
- name: Install Flutter
run: |
# Flutter SDK herunterladen und entpacken
wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.35.6-stable.tar.xz
tar xf flutter_linux_3.35.6-stable.tar.xz
# Flutter zum PATH hinzufügen
echo "$(pwd)/flutter/bin" >> /usr/local/bin
# Flutter Doctor ausführen (optional)
flutter doctor -v
# Flutter-Pfad zur PATH-Variable hinzufügen
echo "$(pwd)/flutter/bin" >> $GITHUB_PATH
# Alternativ für Docker/act:
echo "PATH=$(pwd)/flutter/bin:$PATH" >> $GITHUB_ENV
- name: Get dependencies
run: flutter pub get