Update flutter-build.yml

fix find Runner.res
This commit is contained in:
deep-soft 2023-09-02 14:29:03 +03:00 committed by GitHub
parent 4fe33db4f3
commit c9caa5687a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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