File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -814,7 +814,7 @@ jobs:
814
814
# Install plugins dependencies
815
815
export pluginsOnlyInstall=1
816
816
# yarn build:statics
817
- sh ./scripts/build-statics.sh
817
+ bash ./scripts/build-statics.sh
818
818
- run :
819
819
name : Generate licenses csv files and send csv data to google sheet
820
820
command : |
@@ -1076,6 +1076,8 @@ workflows:
1076
1076
# Workflow for feature, bugfix, main branches
1077
1077
feature-main-branch :
1078
1078
jobs :
1079
+ - licenses-check :
1080
+ name : Process licenses of packages
1079
1081
# Approve to run all (unit, integration, e2e) tests
1080
1082
- approve :
1081
1083
name : Start All Tests
@@ -1146,10 +1148,6 @@ workflows:
1146
1148
env : dev
1147
1149
requires :
1148
1150
- Setup sign certificates (dev)
1149
- - licenses-check :
1150
- name : Process licenses of packages
1151
- requires : &devBuildRequire
1152
- - Setup build (dev)
1153
1151
- linux :
1154
1152
name : Build app - Linux (dev)
1155
1153
env : dev
Original file line number Diff line number Diff line change 3
3
4
4
echo $pluginsOnlyInstall
5
5
6
- if [ " $pluginsOnlyInstall " == " 1 " ]; then
6
+ if [ $pluginsOnlyInstall == 1 ]; then
7
7
exit 1
8
8
fi
9
9
You can’t perform that action at this time.
0 commit comments