We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54fe018 commit 3d43a14Copy full SHA for 3d43a14
1 file changed
.github/workflows/build-docs.yaml
@@ -25,8 +25,20 @@ jobs:
25
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
26
- name: Setup environment
27
run: |
28
- yum install -y epel-release https://repo.ius.io/ius-release-el7.rpm
29
- yum install -y make nodejs git236-core
+ yum install -y epel-release
+ yum install -y make nodejs
30
+ - name: Setup IUS repository
31
+ run: |
32
+ curl --fail --location --silent --show-error https://vault.ius.io/RPM-GPG-KEY-IUS-7 --output /etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
33
+ cat <<'EOF' > /etc/yum.repos.d/ius.repo
34
+ [ius]
35
+ name=IUS
36
+ baseurl=https://vault.ius.io/el7/x86_64/
37
+ enabled=1
38
+ gpgcheck=1
39
+ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-IUS-7
40
+ EOF
41
+ yum install -y git236-core
42
- name: Checkout source code
43
uses: actions/checkout@v4
44
with:
0 commit comments