Update flutter-build.yml
This commit is contained in:
parent
e88e17a4b0
commit
6c5f0aecb4
24
.github/workflows/flutter-build.yml
vendored
24
.github/workflows/flutter-build.yml
vendored
@ -96,6 +96,18 @@ jobs:
|
|||||||
VCPKG_ROOT: C:\rustdesk_thirdpary_lib\vcpkg
|
VCPKG_ROOT: C:\rustdesk_thirdpary_lib\vcpkg
|
||||||
run: python3 .\build.py --portable --hwcodec --flutter --feature IddDriver
|
run: python3 .\build.py --portable --hwcodec --flutter --feature IddDriver
|
||||||
|
|
||||||
|
- name: find Runner.res
|
||||||
|
# Windows: find Runner.res (compiled from ./flutter/windows/runner/Runner.rc), copy to ./Runner.res
|
||||||
|
# Runner.rc does not contain actual version, but Runner.res does
|
||||||
|
continue-on-error: true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
runner_res=$(find . -name Runner.res)
|
||||||
|
if [ runner_res != '' ]; then
|
||||||
|
echo "Runner.res: $runner_res"
|
||||||
|
cp $runner.res ./Runner.res
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Sign rustdesk files
|
- name: Sign rustdesk files
|
||||||
uses: GermanBluefox/code-sign-action@v7
|
uses: GermanBluefox/code-sign-action@v7
|
||||||
if: env.UPLOAD_ARTIFACT == 'true'
|
if: env.UPLOAD_ARTIFACT == 'true'
|
||||||
@ -198,6 +210,18 @@ jobs:
|
|||||||
curl -LJ -o ./Release/sciter.dll https://github.com/c-smile/sciter-sdk/raw/master/bin.win/x32/sciter.dll
|
curl -LJ -o ./Release/sciter.dll https://github.com/c-smile/sciter-sdk/raw/master/bin.win/x32/sciter.dll
|
||||||
echo "output_folder=./Release" >> $GITHUB_OUTPUT
|
echo "output_folder=./Release" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: find Runner.res
|
||||||
|
# Windows: find Runner.res (compiled from ./flutter/windows/runner/Runner.rc), copy to ./Runner.res
|
||||||
|
# Runner.rc does not contain actual version, but Runner.res does
|
||||||
|
continue-on-error: true
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
runner_res=$(find . -name Runner.res)
|
||||||
|
if [ runner_res != '' ]; then
|
||||||
|
echo "Runner.res: $runner_res"
|
||||||
|
cp $runner.res ./Runner.res
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Sign rustdesk files
|
- name: Sign rustdesk files
|
||||||
uses: GermanBluefox/code-sign-action@v7
|
uses: GermanBluefox/code-sign-action@v7
|
||||||
if: env.UPLOAD_ARTIFACT == 'true'
|
if: env.UPLOAD_ARTIFACT == 'true'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user