Update flutter-build.yml

This commit is contained in:
deep-soft
2023-09-01 19:29:10 +03:00
committed by GitHub
Unverified
parent 0c6eacb141
commit 4fe33db4f3

View File

@@ -102,10 +102,12 @@ jobs:
continue-on-error: true
shell: bash
run: |
runner_res=$(find . -name Runner.res)
if [ runner_res != '' ]; then
runner_res=$(find . -name "Runner.res")
if [ $runner_res == '' ]; then
echo "Runner.res: not found"
else
echo "Runner.res: $runner_res"
cp $runner.res ./Runner.res
cp $runner_res ./Runner.res
fi
- name: Sign rustdesk files
@@ -216,10 +218,12 @@ jobs:
continue-on-error: true
shell: bash
run: |
runner_res=$(find . -name Runner.res)
if [ runner_res != '' ]; then
runner_res=$(find . -name "Runner.res")
if [ $runner_res == '' ]; then
echo "Runner.res: not found"
else
echo "Runner.res: $runner_res"
cp $runner.res ./Runner.res
cp $runner_res ./Runner.res
fi
- name: Sign rustdesk files