File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 66
66
if : (vars.ENV == 'staging' || vars.ENV == 'development') && inputs.target == vars.ALL
67
67
run : yarn package:stage
68
68
69
- - name : Build linux packages (development )
69
+ - name : Build linux packages (custom )
70
70
if : inputs.target != vars.ALL
71
71
run : |
72
72
target=$(echo "${{inputs.target}}" | grep -oE 'build_linux_[^_ ]+' | sed 's/build_linux_//' | sort -u | paste -sd ' ' -)
Original file line number Diff line number Diff line change @@ -76,12 +76,14 @@ jobs:
76
76
mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
77
77
78
78
# handle manual builds
79
- - name : Build macos dmg (dev )
79
+ - name : Build macos dmg (custom )
80
80
if : inputs.target != vars.ALL
81
81
run : |
82
82
unset CSC_LINK
83
83
target=$(echo "${{inputs.target}}" | grep -oE 'build_macos_[^ ]+' | sed 's/build_macos_/--/' | paste -sd ' ' -)
84
84
85
+ echo $target
86
+
85
87
if [ "${{ vars.ENV == 'production' }}" == "true" ]; then
86
88
yarn package:prod --mac $target
87
89
else
You can’t perform that action at this time.
0 commit comments