We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f19f739 commit fe6f190Copy full SHA for fe6f190
.github/workflows/runnable.yml
@@ -39,8 +39,9 @@ jobs:
39
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
40
- name: Build example
41
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
+ run: |
+ if [[ ${{ matrix.os }} == 'macos-latest' ]]; then
+ flutter build ios --debug --no-codesign
+ elif [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
+ flutter build apk --debug
47
+ fi
0 commit comments