This commit is contained in:
Dmitry 2025-11-20 00:43:53 +03:00
parent 81072c55f6
commit 51a2b24937

View file

@ -69,12 +69,25 @@ jobs:
apt-get update && apt-get install -y rsync openssh-client jq
- name: Setup Flutter
uses: subosito/flutter-action@v2
uses: https://github.com/subosito/flutter-action@v2
with:
flutter-version: '3.35.5'
channel: 'stable'
cache: false
- name: Debug Flutter install
run: |
echo "FLUTTER_ROOT=$FLUTTER_ROOT"
which flutter || echo "flutter not in PATH"
if [ -n "$FLUTTER_ROOT" ]; then
echo "--- ls FLUTTER_ROOT ---"
ls -la "$FLUTTER_ROOT"
echo "--- check .git ---"
ls -la "$FLUTTER_ROOT/.git" || echo "NO .git in FLUTTER_ROOT"
else
echo "FLUTTER_ROOT is empty!"
fi
- name: Setup SSH
run: |
mkdir -p ~/.ssh