File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,18 @@ jobs:
34
34
run : |
35
35
# Download or access the certificate
36
36
echo "${{ secrets.WEBSITE_CERT }}" > website_cert.pem
37
+ echo "${{ secrets.CERT_CHAIN }}" > website_cert_chain.pem
37
38
38
39
# Add the certificate to the system's trusted certificates
39
40
sudo cp website_cert.pem /usr/local/share/ca-certificates/website_cert.crt
41
+ sudo cp website_cert_chain.pem /usr/local/share/ca-certificates/website_cert_chain.crt
40
42
sudo update-ca-certificates
41
43
42
44
# Verify the certificate is trusted
43
45
openssl verify /usr/local/share/ca-certificates/website_cert.crt
44
-
46
+ openssl verify /usr/local/share/ca-certificates/website_cert_chain.crt
47
+ shell : bash
48
+
45
49
- uses : actions/checkout@v3
46
50
47
51
- uses : r-lib/actions/setup-pandoc@v2
You can’t perform that action at this time.
0 commit comments