Skip to content

Commit d9f2dc0

Browse files
committed
Accept warning in build script
1 parent 1bb8c38 commit d9f2dc0

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/check.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717

1818
- name: Configure app
1919
run: |
20-
./scripts/build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet"
20+
cd scripts
21+
yes yes | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" || true
2122
2223
- name: Debug workspace
2324
run: |

.github/workflows/test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
run: |
3030
cd crypto_plugins/flutter_libepiccash/scripts/linux/
3131
./build_all.sh
32+
- name: Configure app
33+
run: |
34+
cd scripts
35+
yes yes | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" || true
3236
- name: Get dependencies
3337
run: flutter pub get
3438
- name: Create temp files

0 commit comments

Comments
 (0)