Update flutter-build.yml
fix find Runner.res
This commit is contained in:
parent
4fe33db4f3
commit
c9caa5687a
1 changed files with 6 additions and 2 deletions
8
.github/workflows/flutter-build.yml
vendored
8
.github/workflows/flutter-build.yml
vendored
|
|
@ -103,11 +103,13 @@ jobs:
|
|||
shell: bash
|
||||
run: |
|
||||
runner_res=$(find . -name "Runner.res")
|
||||
if [ $runner_res == '' ]; then
|
||||
if [ "$runner_res" == "" ]; then
|
||||
echo "Runner.res: not found"
|
||||
else
|
||||
echo "Runner.res: $runner_res"
|
||||
cp $runner_res ./Runner.res
|
||||
echo "list ./Runner.res"
|
||||
ls -l ./Runner.res
|
||||
fi
|
||||
|
||||
- name: Sign rustdesk files
|
||||
|
|
@ -219,11 +221,13 @@ jobs:
|
|||
shell: bash
|
||||
run: |
|
||||
runner_res=$(find . -name "Runner.res")
|
||||
if [ $runner_res == '' ]; then
|
||||
if [ "$runner_res" == "" ]; then
|
||||
echo "Runner.res: not found"
|
||||
else
|
||||
echo "Runner.res: $runner_res"
|
||||
cp $runner_res ./Runner.res
|
||||
echo "list ./Runner.res"
|
||||
ls -l ./Runner.res
|
||||
fi
|
||||
|
||||
- name: Sign rustdesk files
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue