Skip to content

Commit

Permalink
update input type to string
Browse files Browse the repository at this point in the history
  • Loading branch information
sravs-dev committed Dec 5, 2023
1 parent cc358e6 commit 7a08bbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pack-build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
python-version:
required: false
type: string
default: ["3.6","3.8","3.9"]
default: '["3.6","3.8","3.9"]'
enable-common-libs:
description: |
When true, use an st2.conf that sets packs.enable_common_libs=true
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
name: 'Python ${{ matrix.python-version }}'
strategy:
matrix:
python-version: ${{ inputs.python-version }}
python-version: ${{ fromJSON(inputs.python-version) }}
steps:
- name: Checkout Pack Repo and CI Repos
uses: StackStorm-Exchange/ci/.github/actions/checkout@master
Expand Down

0 comments on commit 7a08bbc

Please sign in to comment.