Skip to content

Commit 7ea9bf1

Browse files
committed
Fix desktop-web version matching for develop branch test CI
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 4fe0384 commit 7ea9bf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
permissions:
1414
contents: read
1515
with:
16-
config: ${{ github.event.pull_request.base.ref == 'develop' && 'element.io/nightly' || 'element.io/release' }}
17-
version: ${{ github.event.pull_request.base.ref == 'develop' && 'develop' || '' }}
16+
config: ${{ (github.event.pull_request.base.ref || github.ref_name) == 'develop' && 'element.io/nightly' || 'element.io/release' }}
17+
version: ${{ (github.event.pull_request.base.ref || github.ref_name) == 'develop' && 'develop' || '' }}
1818

1919
windows:
2020
needs: fetch

0 commit comments

Comments
 (0)