Skip to content

Commit

Permalink
test7
Browse files Browse the repository at this point in the history
  • Loading branch information
qurious-pixel authored Jan 4, 2024
1 parent b647ffa commit 4ff3743
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
export BETAHASH=$(curl -sSfL https://dolphin-emu.org/update/latest/beta/ | jq .hash | tr -d '"')
echo "RUNHASH is $RUNHASH"
echo "BETAHASH is $BETAHASH"
if [[ $RUNHASH != $BETAHASH ]]; then
echo "BETAUPDATE=false" >> $GITHUB_OUTPUT
if [[ $RUNHASH == $BETAHASH ]]; then
echo "BETAUPDATE=true" >> $GITHUB_OUTPUT
else
echo "Updating..."
echo "BETAUPDATE=true" >> $GITHUB_OUTPUT
echo "BETAUPDATE=false" >> $GITHUB_OUTPUT
fi
dolphin-appimage:
if: needs.beta-run-check.outputs.BETAUPDATE == 'true'
if: needs.beta-run-check.outputs.BETAUPDATE == 'false'
name: dolphin beta bundled as appimage
runs-on: ubuntu-20.04
needs: beta-run-check
Expand Down

0 comments on commit 4ff3743

Please sign in to comment.