Skip to content

Commit fe6f190

Browse files
committed
💚 Try to fix example build
1 parent f19f739 commit fe6f190

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/runnable.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ jobs:
3939
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
4040
- name: Build example
4141
working-directory: packages/agent_dart/example
42-
run: if [[ ${{ matrix.os }} == 'macos-latest' ]]; then
43-
flutter build ios --no-codesign
44-
elif [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
45-
flutter build apk
46-
fi
42+
run: |
43+
if [[ ${{ matrix.os }} == 'macos-latest' ]]; then
44+
flutter build ios --debug --no-codesign
45+
elif [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
46+
flutter build apk --debug
47+
fi

0 commit comments

Comments
 (0)