diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2023-01-10 15:00:39 +0100 |
---|---|---|
committer | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2023-01-10 15:03:28 +0100 |
commit | a113ecca8b86a0aa9a448795b49c9bb841ddc59a (patch) | |
tree | 7a640adb536edb1ab86b708130527d0305aac332 /.github/workflows | |
parent | 61144f7a219995fa29531683ed36e8e4002848b5 (diff) | |
download | PrismLauncher-a113ecca8b86a0aa9a448795b49c9bb841ddc59a.tar.gz PrismLauncher-a113ecca8b86a0aa9a448795b49c9bb841ddc59a.tar.bz2 PrismLauncher-a113ecca8b86a0aa9a448795b49c9bb841ddc59a.zip |
fix: just use github runner's openssl 1.1 instead of installing 3 on macos signing
Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d75a457..e0a80f20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -342,9 +342,8 @@ jobs: if: matrix.name == 'macOS' run: | if [ '${{ secrets.SPARKLE_ED25519_KEY }}' != '' ]; then - brew install openssl@3 echo '${{ secrets.SPARKLE_ED25519_KEY }}' > ed25519-priv.pem - signature=$(/usr/local/opt/openssl@3/bin/openssl pkeyutl -sign -rawin -in ${{ github.workspace }}/PrismLauncher.tar.gz -inkey ed25519-priv.pem | openssl base64 | tr -d \\n) + signature=$(openssl pkeyutl -sign -rawin -in ${{ github.workspace }}/PrismLauncher.tar.gz -inkey ed25519-priv.pem | openssl base64 | tr -d \\n) rm ed25519-priv.pem cat >> $GITHUB_STEP_SUMMARY << EOF ### Artifact Information :information_source: |