File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 description : " Tag should be used for releases"
88 createBundle :
99 required : false
10- default : false
10+ default : ' false'
1111 type : boolean
12- description : " Tag should be used for releases "
12+ description : " If specified, creates a ZIP distributable bundle "
1313
1414runs :
1515 using : " composite"
@@ -28,21 +28,21 @@ runs:
2828 shell : bash
2929
3030 - name : Build the SDK (with tag)
31- if : ${{ inputs.tag }} != null
31+ if : ${{ inputs.tag }} != ''
3232 run : ./gradlew buildSdk -Ptag_name=${{ inputs.tag }}
3333 shell : bash
3434
3535 - name : Build the SDK
36- if : ${{ inputs.tag }} == null
36+ if : ${{ inputs.tag }} == ''
3737 run : ./gradlew buildSdk
3838 shell : bash
3939
4040 - name : Override Harness (custom icon)
41- if : ${{ inputs.createBundle }}
41+ if : ${{ inputs.createBundle == 'true' }}
4242 run : ./gradlew overrideHarness -Ptag_name=${{ github.ref_name }}
4343 shell : bash
4444
4545 - name : Build distributable ZIP
46- if : ${{ inputs.createBundle }}
46+ if : ${{ inputs.createBundle == 'true' }}
4747 run : ant -Dstorepass="$NBM_SIGN_PASS" -Dpack200.enabled=false set-spec-version build-zip unset-spec-version
4848 shell : bash
Original file line number Diff line number Diff line change 1- name : " Build SDK "
2- description : " Setups and builds the SDK (Linux) "
1+ name : " NBM deployment "
2+ description : " Deploys NBM packages "
33
44inputs :
55 token :
Original file line number Diff line number Diff line change 1818 uses : ./.github/actions/build-sdk
1919 with :
2020 tag : ${{ github.ref_name }}
21- createBundle : true
21+ createBundle : ' true'
2222
2323 - name : Prepare installers
2424 uses : ./.github/actions/prepare-installers
You can’t perform that action at this time.
0 commit comments