Skip to content

Commit

Permalink
matrix 5
Browse files Browse the repository at this point in the history
  • Loading branch information
qurious-pixel authored Jan 4, 2024
1 parent c165725 commit bc1c22b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo "BETAUPDATE=true" >> $GITHUB_OUTPUT
fi
- name: Checkout Upstream Repo - beta
if: ${{ matrix.RELEASE == 'beta' }} && ${{ env.BETAUPDATE == 'true' }}
if: ${{ matrix.RELEASE == 'beta' && env.BETAUPDATE == 'true' }}
uses: actions/checkout@v4
with:
repository: dolphin-emu/dolphin
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
sudo mv /tmp/patchelf /usr/bin
patchelf --version
- name: Dolphin-Build Number - beta
if: ${{ matrix.RELEASE == 'beta' }} && ${{ env.BETAUPDATE == 'true' }}
if: ${{ matrix.RELEASE == 'beta' && env.BETAUPDATE == 'true' }}
run: |
export DOLPHINVER=$(curl -L https://dolphin-emu.org/update/latest/beta/ | jq .shortrev | tr -d '"')
echo "DOLPHIN Build $DOLPHINVER"
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
name: Dolphin_${{ env.DOLPHINVER }}-${{ matrix.RELEASE }}
path: artifacts/
- name: Upload Dolphin
if: ${{ matrix.RELEASE == 'beta' }} && ${{ env.BETAUPDATE == 'true' }}
if: ${{ matrix.RELEASE == 'beta' && env.BETAUPDATE == 'true' }}
run: |
ls -al artifacts/
wget -c https://github.com/tcnksm/ghr/releases/download/v0.13.0/ghr_v0.13.0_linux_amd64.tar.gz
Expand Down

0 comments on commit bc1c22b

Please sign in to comment.