We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7cc7b8 commit 838a230Copy full SHA for 838a230
.github/workflows/test.yml
@@ -26,7 +26,7 @@ jobs:
26
generate-cdk-version-matrix:
27
runs-on: ubuntu-latest
28
outputs:
29
- matrix: ${{ steps.set-matrix.env.MATRIX }}
+ matrix: ${{ steps.set-matrix.outputs.matrix }}
30
steps:
31
- name: Use Node.js ${{ inputs.node-version }}
32
uses: actions/setup-node@v2
@@ -36,8 +36,9 @@ jobs:
36
id: set-matrix
37
run: |
38
VERSIONS_ARRAY=$(npm show aws-cdk time --json --silent| jq 'del(.created, .modified) | keys' -c)
39
- echo "MATRIX={\"cdk-version\":$( echo "$VERSIONS_ARRAY" )}" >> $GITHUB_ENV
40
- echo $MATRIX
+ echo "MATRIX={\"cdk-version\":$( echo "$VERSIONS_ARRAY" )}"
+ echo "::set-output name=matrix::$MATRIX"
41
+
42
43
version-testing:
44
0 commit comments