Skip to content

Commit 4f61263

Browse files
committed
💚 Try to fix example build x4
1 parent 97a74e3 commit 4f61263

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/runnable.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ jobs:
3939
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
4040
- name: Build example
4141
working-directory: packages/agent_dart/example
42+
shell: bash
4243
run: |
43-
if [[ ${{ matrix.os }} == 'macos-latest' ]]; then
44+
if [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
4445
flutter build ios --debug --no-codesign
45-
elif [[ ${{ matrix.os }} == 'ubuntu-latest' ]]; then
46+
elif [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
4647
flutter build apk --debug
4748
else
4849
echo "Well, nothing."

0 commit comments

Comments
 (0)