Skip to content

Commit c1c4832

Browse files
authored
Update release.yml
1 parent 1640441 commit c1c4832

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
}
6363
6464
outputs:
65-
matrix: fromJSON(${{ steps.set_matrix.outputs.result }})
65+
matrix: ${{ steps.set_matrix.outputs.result }}
6666

6767
test_saving:
6868
if: github.event_name != 'delete'
6969
needs: build
7070
strategy:
71-
matrix: ${{ needs.build.outputs.matrix }}
71+
matrix: ${{ fromJSON(needs.build.outputs.matrix) }}
7272
runs-on: ubuntu-latest
7373

7474
steps:
@@ -98,7 +98,7 @@ jobs:
9898
test_restoring:
9999
needs: test_saving
100100
strategy:
101-
matrix: ${{ needs.build.outputs.matrix }}
101+
matrix: ${{ fromJSON(needs.build.outputs.matrix) }}
102102
runs-on: ubuntu-latest
103103
steps:
104104
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)