Skip to content

Commit

Permalink
[DEVOPS-XXX] Set INSTALL_NODE workflow input to string type (#104)
Browse files Browse the repository at this point in the history
<!-- Please make sure you read the contribution guidelines and then fill
out the blanks below.

Please format the PR title appropriately based on the type of change:
  [JIRA-XXX]: <description>
-->

## Description

- Set INSTALL_NODE workflow input to string type

## Related Links

<!-- List any links related to this pull request here

Replace "JIRA-XXX" with the your Jira issue key -->

- Jira Issue: DEVOPS-XXX
  • Loading branch information
ebronson68 committed Jan 16, 2024
1 parent 74bb848 commit 9beaa55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ruby-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:
description: "Apt packages to install"
INSTALL_NODE:
required: false
type: boolean
type: string
description: "Whether to install Node.js or not"
default: false
default: 'false'
NODE_VERSION:
required: false
type: string
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Set up Node
uses: actions/setup-node@v3
if: ${{ inputs.INSTALL_NODE == true }}
if: ${{ inputs.INSTALL_NODE == 'true' }}
with:
node-version: ${{ inputs.NODE_VERSION }}

Expand Down

0 comments on commit 9beaa55

Please sign in to comment.