Skip to content

Commit

Permalink
release: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Dec 13, 2024
1 parent c9e5df5 commit 6177046
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
cd clients/android
git checkout main
- name: Checkout dev branch
if: github.ref == 'refs/heads/dev-next' && github.event_name != 'workflow_dispatch'
if: github.ref == 'refs/heads/dev-next'
run: |-
cd clients/android
git checkout dev
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
cd clients/android
git checkout main
- name: Checkout dev branch
if: github.ref == 'refs/heads/dev-next' && github.event_name != 'workflow_dispatch'
if: github.ref == 'refs/heads/dev-next'
run: |-
cd clients/android
git checkout dev
Expand Down Expand Up @@ -397,7 +397,8 @@ jobs:
- name: Setup Xcode beta
if: matrix.if && github.ref == 'refs/heads/dev-next'
run: |-
sudo xcode-select -s /Applications/Xcode_16.2.app
sudo xcode-select -s /Applications/Xcode_16.2_Release_Candidate.app || \
sudo xcode-select -s /Applications/Xcode_16.1.app # TODO: remove after hosted runners update
- name: Set tag
if: matrix.if
run: |-
Expand All @@ -409,7 +410,7 @@ jobs:
cd clients/apple
git checkout main
- name: Checkout dev branch
if: matrix.if && github.ref == 'refs/heads/dev-next' && github.event_name != 'workflow_dispatch'
if: matrix.if && github.ref == 'refs/heads/dev-next'
run: |-
cd clients/apple
git checkout dev
Expand Down

0 comments on commit 6177046

Please sign in to comment.