run
This commit is contained in:
parent
81072c55f6
commit
51a2b24937
1 changed files with 14 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue