Skip to content

Commit

Permalink
fix openssl download url
Browse files Browse the repository at this point in the history
  • Loading branch information
217heidai committed Sep 4, 2024
1 parent 253d141 commit 243ae81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_arm64-v8a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Download OpenSSL
id: download_openssl
run: |
aria2c https://www.openssl.org/source/openssl-${{env.OPENSSL_VERSION}}.tar.gz
aria2c https://github.com/openssl/openssl/releases/download/openssl-${{env.OPENSSL_VERSION}}/openssl-${{env.OPENSSL_VERSION}}.tar.gz
tar -zxvf openssl-${{env.OPENSSL_VERSION}}.tar.gz
echo "::set-output name=status::success"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_armeabi-v7a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Download OpenSSL
id: download_openssl
run: |
aria2c https://www.openssl.org/source/openssl-${{env.OPENSSL_VERSION}}.tar.gz
aria2c https://github.com/openssl/openssl/releases/download/openssl-${{env.OPENSSL_VERSION}}/openssl-${{env.OPENSSL_VERSION}}.tar.gz
tar -zxvf openssl-${{env.OPENSSL_VERSION}}.tar.gz
echo "::set-output name=status::success"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Download OpenSSL
id: download_openssl
run: |
aria2c https://www.openssl.org/source/openssl-${{env.OPENSSL_VERSION}}.tar.gz
aria2c https://github.com/openssl/openssl/releases/download/openssl-${{env.OPENSSL_VERSION}}/openssl-${{env.OPENSSL_VERSION}}.tar.gz
tar -zxvf openssl-${{env.OPENSSL_VERSION}}.tar.gz
echo "::set-output name=status::success"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Download OpenSSL
id: download_openssl
run: |
aria2c https://www.openssl.org/source/openssl-${{env.OPENSSL_VERSION}}.tar.gz
aria2c https://github.com/openssl/openssl/releases/download/openssl-${{env.OPENSSL_VERSION}}/openssl-${{env.OPENSSL_VERSION}}.tar.gz
tar -zxvf openssl-${{env.OPENSSL_VERSION}}.tar.gz
echo "::set-output name=status::success"
Expand Down

0 comments on commit 243ae81

Please sign in to comment.