File tree 2 files changed +5
-2
lines changed 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -429,6 +429,9 @@ galaxy_uwsgi_config_default:
429
429
# build separately, but this is not guaranteed to work for all version of Galaxy - using `make` is the safer choice.
430
430
galaxy_client_make_target : client-production-maps
431
431
432
+ # Build the client even if it is not out of date
433
+ galaxy_client_force_build : false
434
+
432
435
# If galaxy_client_make_target is null, you can set this to `development` to build the client for development
433
436
galaxy_client_node_env : production
434
437
galaxy_client_build_steps :
Original file line number Diff line number Diff line change 30
30
31
31
- name : Set client build version fact
32
32
set_fact :
33
- __galaxy_client_build_version : " {{ __galaxy_client_build_version_result.content | b64decode | trim }}"
33
+ __galaxy_client_build_version : " {{ galaxy_client_force_build | ternary('FORCE-BUILD', __galaxy_client_build_version_result.content | b64decode | trim) }}"
34
34
35
- - name : Set client build version fact
35
+ - name : Set galaxy commit ID fact
36
36
set_fact :
37
37
__galaxy_current_commit_id : " {{ __galaxy_git_stat_result.after if __galaxy_from_git.stat.exists else 'none' }}"
38
38
when : __galaxy_from_git.stat.exists
You can’t perform that action at this time.
0 commit comments