File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020jobs :
2121 test :
2222 runs-on : ubuntu-latest
23+ if : ${{ vars.BO_EDITION == 'ce' }}
2324 defaults :
2425 run :
2526 working-directory : ${{ env.FLUTTER_WORKING_DIR }}
7273
7374
7475 get-version :
76+ if : ${{ vars.BO_EDITION == 'ce' }}
7577 runs-on : ubuntu-latest
7678 outputs :
7779 version : ${{ steps.extract.outputs.version }}
9698
9799
98100 build-apk :
101+ if : ${{ vars.BO_EDITION == 'ce' }}
99102 needs : [test, get-version]
100103 runs-on : ubuntu-latest
101104 defaults :
@@ -182,6 +185,7 @@ jobs:
182185 path : ${{ github.workspace }}/${{ env.FLUTTER_WORKING_DIR }}/build/app/outputs/flutter-apk/borneo-app-ce-${{ needs.get-version.outputs.version }}.apk
183186
184187 build-windows :
188+ if : ${{ vars.BO_EDITION == 'ce' }}
185189 needs : [test, get-version]
186190 runs-on : windows-latest
187191 defaults :
@@ -249,6 +253,7 @@ jobs:
249253 path : client/build/windows/dist/borneo-app-ce-${{ needs.get-version.outputs.version }}-windows-x64.zip
250254
251255 build-ios :
256+ if : ${{ vars.BO_EDITION == 'ce' }}
252257 needs : [test, get-version]
253258 runs-on : macos-14
254259 defaults :
@@ -302,7 +307,7 @@ jobs:
302307 release :
303308 needs : [build-apk, build-windows, build-ios]
304309 runs-on : ubuntu-latest
305- if : github.ref == 'refs/heads/master'
310+ if : ${{ github.ref == 'refs/heads/master' && vars.BO_EDITION == 'ce' }}
306311
307312 steps :
308313 - name : Download artifacts
Original file line number Diff line number Diff line change 1616 build-lyfi :
1717 runs-on : ubuntu-latest
1818 container : ' espressif/idf:v5.5.2'
19+ if : ${{ vars.BO_EDITION == 'ce' }}
1920 env :
2021 LYFI_PRODUCTS : bst/ulva6 bst/blc06mk1
2122
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ permissions:
1515
1616jobs :
1717 release :
18+ if : ${{ vars.BO_EDITION == 'ce' }}
1819 runs-on : ubuntu-latest
1920 container : ' espressif/idf:v5.5.2'
2021 env :
You can’t perform that action at this time.
0 commit comments