Fixed syntax error for OpenSSL version detection

This commit is contained in:
Hiroshi SHIBATA 2025-02-15 07:21:31 +09:00
parent ba148e71e5
commit 2556a975c7
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -86,7 +86,7 @@ jobs:
- name: Store the latest LTS version of OpenSSL - name: Store the latest LTS version of OpenSSL
run: | run: |
echo 'OPENSSL_VERSION=`curl -s https://api.github.com/repos/openssl/openssl/releases | jq -r '.[].tag_name | select(startswith("openssl-3.0"))' | sort -Vr | head -n1 | cut -d'-' -f2`' >> $GITHUB_ENV echo "OPENSSL_VERSION=`curl -s https://api.github.com/repos/openssl/openssl/releases | jq -r '.[].tag_name | select(startswith("openssl-3.0"))' | sort -Vr | head -n1 | cut -d'-' -f2`" >> $GITHUB_ENV
- name: Update ruby-build definition - name: Update ruby-build definition
run: | run: |