File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -248,6 +248,11 @@ jobs:
248
248
container : " centos:7"
249
249
250
250
steps :
251
+ # The centos container doesn't have Git 2.18.0 or higher
252
+ # so we install git again, otherwise submodules won't be installed
253
+ - name : Install Git
254
+ run : yum install -y git
255
+
251
256
- name : Checkout repo
252
257
uses : actions/checkout@v3
253
258
with :
@@ -259,12 +264,10 @@ jobs:
259
264
with :
260
265
node-version : " 16"
261
266
262
- # The centos container doesn't have Git 2.18.0 or higher
263
- # so we install git again in this step.
264
267
- name : Install development tools
265
268
run : |
266
269
yum install -y epel-release centos-release-scl
267
- yum install -y devtoolset-9-{make,gcc,gcc-c++} jq rsync python3 git
270
+ yum install -y devtoolset-9-{make,gcc,gcc-c++} jq rsync python3
268
271
269
272
- name : Install nfpm and envsubst
270
273
run : |
You can’t perform that action at this time.
0 commit comments