Skip to content

Commit 92bdb89

Browse files
committed
worrrrk
1 parent c3c0842 commit 92bdb89

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,11 @@ jobs:
248248
container: "centos:7"
249249

250250
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+
251256
- name: Checkout repo
252257
uses: actions/checkout@v3
253258
with:
@@ -259,12 +264,10 @@ jobs:
259264
with:
260265
node-version: "16"
261266

262-
# The centos container doesn't have Git 2.18.0 or higher
263-
# so we install git again in this step.
264267
- name: Install development tools
265268
run: |
266269
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
268271
269272
- name: Install nfpm and envsubst
270273
run: |

0 commit comments

Comments
 (0)