You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
The setup_icon_file property is nowhere to be found in the documentation but I did find a merge request that added this property.
Here is my make_config.yaml
After running the workflow with the setup_icon_file set, it results in a build failure:
Preparing Setup program executable
Updating icons (SETUP.E32)
Error on line 15 in D:\a\brisk\brisk\dist\1.4.6+15\brisk-1.4.6+15-windows-setup_exe.iss: The system cannot find the path specified.
Compile aborted.
MakeError
#0 AppPackageMakerExe._make (package:flutter_app_packager/src/makers/exe/app_package_maker_exe.dart:49:7)
<asynchronous suspension>
#1 FlutterDistributor.package (package:flutter_distributor/src/flutter_distributor.dart:182:35)
<asynchronous suspension>
#2 CommandRunner.runCommand (package:args/command_runner.dart:212:13)
<asynchronous suspension>
Unhandled exception:
MakeError
#0 AppPackageMakerExe._make (package:flutter_app_packager/src/makers/exe/app_package_maker_exe.dart:49:7)
<asynchronous suspension>
#1 FlutterDistributor.package (package:flutter_distributor/src/flutter_distributor.dart:182:35)
<asynchronous suspension>
#2 CommandRunner.runCommand (package:args/command_runner.dart:212:13)
<asynchronous suspension>
The exe is built eventually, however, the file is corrupted as it failed during the build. The crazy thing is that the icon is properly set for the corrupted exe file.
It does work fine if I set the path explicitly like this: setup_icon_file: D:\\a\\brisk\\brisk\\assets\\icons\\logo.ico. However, this is obviously not ideal. Is there any way to use ${{ github.workspace }} for flutter distributor?
The text was updated successfully, but these errors were encountered:
Hello.
The setup_icon_file property is nowhere to be found in the documentation but I did find a merge request that added this property.
Here is my make_config.yaml
After running the workflow with the
setup_icon_file
set, it results in a build failure:The exe is built eventually, however, the file is corrupted as it failed during the build. The crazy thing is that the icon is properly set for the corrupted exe file.
It does work fine if I set the path explicitly like this:
setup_icon_file: D:\\a\\brisk\\brisk\\assets\\icons\\logo.ico
. However, this is obviously not ideal. Is there any way to use${{ github.workspace }}
for flutter distributor?The text was updated successfully, but these errors were encountered: