aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-01-10 16:28:02 +0100
committerGitHub <noreply@github.com>2023-01-10 16:28:02 +0100
commit976e550aa7291f22f5011178ab824a937f89d11a (patch)
tree7a640adb536edb1ab86b708130527d0305aac332
parent61144f7a219995fa29531683ed36e8e4002848b5 (diff)
parenta113ecca8b86a0aa9a448795b49c9bb841ddc59a (diff)
downloadPrismLauncher-976e550aa7291f22f5011178ab824a937f89d11a.tar.gz
PrismLauncher-976e550aa7291f22f5011178ab824a937f89d11a.tar.bz2
PrismLauncher-976e550aa7291f22f5011178ab824a937f89d11a.zip
Merge pull request #729 from DioEgizio/fix-mac-openssl3-failing
fix: just use github runner's openssl 1.1 instead of installing 3 on …
-rw-r--r--.github/workflows/build.yml3
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: