From fc71cc26fba0ccf9e7a30e483682b1aad008991c Mon Sep 17 00:00:00 2001 From: yetone Date: Fri, 27 Sep 2024 00:24:52 +0800 Subject: [PATCH] fix(release): install esenttial dependencies openssl-devel (#647) --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 05f48fd..8af4676 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -93,6 +93,9 @@ jobs: toolchain: 1.80.0 - uses: actions/checkout@v1 # for glibc 2.17 if: ${{ matrix.config.os_name == 'linux' }} + - name: Install essential dependencies # for glibc 2.17 + if: ${{ matrix.config.os_name == 'linux' }} + run: yum install -y openssl-devel - name: Install rust # for glibc 2.17 if: ${{ matrix.config.os_name == 'linux' }} run: |