Skip to content

Commit

Permalink
Skip desktop jobs on mobile tags
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Sep 26, 2023
1 parent c974804 commit 4e465b5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
# needs: run-e2e-tests-linux
runs-on: ubuntu-22.04
if: |
startsWith(github.ref, 'refs/tags/quiet')
startsWith(github.ref, 'refs/tags/quiet') &&
!contains(github.ref, '/mobile')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down Expand Up @@ -89,7 +90,8 @@ jobs:
# needs: run-e2e-tests-mac
runs-on: macos-latest
if: |
startsWith(github.ref, 'refs/tags/quiet')
startsWith(github.ref, 'refs/tags/quiet') &&
!contains(github.ref, '/mobile')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down Expand Up @@ -162,7 +164,8 @@ jobs:
# needs: run-e2e-tests-win
runs-on: windows-2019
if: |
startsWith(github.ref, 'refs/tags/quiet')
startsWith(github.ref, 'refs/tags/quiet') &&
!contains(github.ref, '/mobile')
env:
TEST_MODE: ${{ github.event.action == 'prereleased' }}
Expand Down

0 comments on commit 4e465b5

Please sign in to comment.