File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6262 echo "version=$version" >> "$GITHUB_OUTPUT"
6363 build :
6464 name : Build binary
65- if : false
65+ if : github.event_name != 'workflow_dispatch' || inputs.build == 'All' || inputs.build == 'Binary'
6666 runs-on : ubuntu-latest
6767 needs :
6868 - calculate_version
@@ -354,7 +354,7 @@ jobs:
354354 path : " dist"
355355 build_android :
356356 name : Build Android
357- if : false
357+ if : github.event_name != 'workflow_dispatch' || inputs.build == 'All' || inputs.build == 'Android'
358358 runs-on : ubuntu-latest
359359 needs :
360360 - calculate_version
@@ -434,7 +434,7 @@ jobs:
434434 path : ' dist'
435435 publish_android :
436436 name : Publish Android
437- if : false
437+ if : github.event_name == 'workflow_dispatch' && inputs.build == 'publish-android'
438438 runs-on : ubuntu-latest
439439 needs :
440440 - calculate_version
@@ -681,7 +681,7 @@ jobs:
681681 path : ' dist'
682682 upload :
683683 name : Upload builds
684- if : false
684+ if : " !failure() && github.event_name == 'workflow_dispatch' && (inputs.build == 'All' || inputs.build == 'Binary' || inputs.build == 'Android' || inputs.build == 'Apple' || inputs.build == 'macOS-standalone') "
685685 runs-on : ubuntu-latest
686686 needs :
687687 - calculate_version
You can’t perform that action at this time.
0 commit comments