diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2023-01-10 16:47:00 +0100 |
---|---|---|
committer | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2023-01-10 16:47:28 +0100 |
commit | d45a62b3a61e3da8b113251f7dff55c4f7634197 (patch) | |
tree | 0b56a4949c9fb64d38b805afac59a5bfecab2c2b /.github/workflows | |
parent | 976e550aa7291f22f5011178ab824a937f89d11a (diff) | |
download | PrismLauncher-d45a62b3a61e3da8b113251f7dff55c4f7634197.tar.gz PrismLauncher-d45a62b3a61e3da8b113251f7dff55c4f7634197.tar.bz2 PrismLauncher-d45a62b3a61e3da8b113251f7dff55c4f7634197.zip |
Revert "Merge pull request #729 from DioEgizio/fix-mac-openssl3-failing"
it was necessary :/
This reverts commit 976e550aa7291f22f5011178ab824a937f89d11a, reversing
changes made to 61144f7a219995fa29531683ed36e8e4002848b5.
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, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0a80f20..9d75a457 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -342,8 +342,9 @@ 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=$(openssl pkeyutl -sign -rawin -in ${{ github.workspace }}/PrismLauncher.tar.gz -inkey ed25519-priv.pem | openssl base64 | tr -d \\n) + 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) rm ed25519-priv.pem cat >> $GITHUB_STEP_SUMMARY << EOF ### Artifact Information :information_source: |