We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe0384 commit 7ea9bf1Copy full SHA for 7ea9bf1
.github/workflows/build_and_test.yaml
@@ -13,8 +13,8 @@ jobs:
13
permissions:
14
contents: read
15
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' || '' }}
+ config: ${{ (github.event.pull_request.base.ref || github.ref_name) == 'develop' && 'element.io/nightly' || 'element.io/release' }}
+ version: ${{ (github.event.pull_request.base.ref || github.ref_name) == 'develop' && 'develop' || '' }}
18
19
windows:
20
needs: fetch
0 commit comments