File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 3838 required : false
3939 type : boolean
4040 default : false
41- if : inputs.platform == 'macos-latest'
4241 multi_arch :
4342 description : " MultiArch, MacOS only, Optional"
4443 required : false
4544 type : boolean
4645 default : false
47- if : inputs.platform == 'macos-latest'
4846 targets :
4947 description : " Targets, Linux only, Optional"
5048 required : false
5452 - " deb"
5553 - " appimage"
5654 - " rpm"
57- if : inputs.platform == 'ubuntu-24.04'
5855
5956jobs :
6057 build :
Original file line number Diff line number Diff line change @@ -34,20 +34,20 @@ const buildParameters = () => {
3434 process . env . WIDTH ,
3535 ] ;
3636
37- if ( process . env . HIDE_TITLE_BAR === "true" ) {
37+ if ( process . env . HIDE_TITLE_BAR === "true" && process . platform === "darwin" ) {
3838 params . push ( "--hide-title-bar" ) ;
3939 }
4040
4141 if ( process . env . FULLSCREEN === "true" ) {
4242 params . push ( "--fullscreen" ) ;
4343 }
4444
45- if ( process . env . MULTI_ARCH === "true" ) {
45+ if ( process . env . MULTI_ARCH === "true" && process . platform === "darwin" ) {
4646 // We'll handle rustup separately since it's a different command
4747 params . push ( "--multi-arch" ) ;
4848 }
4949
50- if ( process . env . TARGETS ) {
50+ if ( process . env . TARGETS && process . platform === "linux" ) {
5151 params . push ( "--targets" , process . env . TARGETS ) ;
5252 }
5353
You can’t perform that action at this time.
0 commit comments