diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-01-10 17:44:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 17:44:23 +0100 |
commit | dd013209e8f31b4c3b5540c1cd6aa65af9637dcb (patch) | |
tree | a29cd115dbda66337904339d103c6a5938b99d5e /.github/workflows/build.yml | |
parent | 96d5438633807488eafb577d583d5400d0d91f08 (diff) | |
parent | d45a62b3a61e3da8b113251f7dff55c4f7634197 (diff) | |
download | PrismLauncher-dd013209e8f31b4c3b5540c1cd6aa65af9637dcb.tar.gz PrismLauncher-dd013209e8f31b4c3b5540c1cd6aa65af9637dcb.tar.bz2 PrismLauncher-dd013209e8f31b4c3b5540c1cd6aa65af9637dcb.zip |
Merge pull request #730 from DioEgizio/aaaaaaaa-revert
Revert "Merge pull request #729 from DioEgizio/fix-mac-openssl3-failing"
Diffstat (limited to '.github/workflows/build.yml')
-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: |