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 97a74e3 commit 4f61263Copy full SHA for 4f61263
.github/workflows/runnable.yml
@@ -39,10 +39,11 @@ jobs:
39
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
40
- name: Build example
41
working-directory: packages/agent_dart/example
42
+ shell: bash
43
run: |
- if [[ ${{ matrix.os }} == 'macos-latest' ]]; then
44
+ if [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
45
flutter build ios --debug --no-codesign
- elif [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
46
+ elif [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
47
flutter build apk --debug
48
else
49
echo "Well, nothing."
0 commit comments