Skip to content

Commit

Permalink
fix juce8 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Oct 9, 2024
1 parent f4520ff commit e0edd02
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ jobs:

- name: Set JUCE branch
run: |
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]; then
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]
then
echo "juce-branch=juce8_local" >> $GITHUB_ENV
else
echo "juce-branch=develop-local" >> $GITHUB_ENV
fi
- name: Checkout JUCE
uses: actions/checkout@v2
Expand Down Expand Up @@ -121,10 +123,12 @@ jobs:

- name: Set JUCE branch
run: |
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]; then
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]
then
echo "juce-branch=juce8_local" >> $GITHUB_ENV
else
echo "juce-branch=develop-local" >> $GITHUB_ENV
fi
- name: Checkout JUCE
uses: actions/checkout@v2
Expand Down Expand Up @@ -193,10 +197,12 @@ jobs:

- name: Set JUCE branch
run: |
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]; then
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]
then
echo "juce-branch=juce8_local" >> $GITHUB_ENV
else
echo "juce-branch=develop-local" >> $GITHUB_ENV
fi
- name: Checkout JUCE
uses: actions/checkout@v2
Expand Down Expand Up @@ -294,10 +300,12 @@ jobs:

- name: Set JUCE branch
run: |
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]; then
if [[ "${{ github.ref }}" == "refs/heads/juce8" ]]
then
echo "juce-branch=juce8_local" >> $GITHUB_ENV
else
echo "juce-branch=develop-local" >> $GITHUB_ENV
fi
- name: Checkout JUCE
uses: actions/checkout@v2
Expand Down

0 comments on commit e0edd02

Please sign in to comment.