Skip to content

Commit f8a50c1

Browse files
committed
Fix descriptions and variable usages
1 parent 459ca20 commit f8a50c1

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/actions/build-sdk/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ inputs:
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

1414
runs:
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

.github/actions/nbm-deployment/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "Build SDK"
2-
description: "Setups and builds the SDK (Linux)"
1+
name: "NBM deployment"
2+
description: "Deploys NBM packages"
33

44
inputs:
55
token:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

0 commit comments

Comments
 (0)