Skip to content

Commit

Permalink
release: Fix checkout dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nekohasekai committed Dec 13, 2024
1 parent c9e5df5 commit 0d1fdc3
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 @@ -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 @@ -409,7 +409,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 0d1fdc3

Please sign in to comment.