fix: Hardcode matrix
This commit is contained in:
parent
25378a4668
commit
9298c53a40
1 changed files with 16 additions and 1 deletions
|
@ -61,7 +61,22 @@ jobs:
|
||||||
attestations: write
|
attestations: write
|
||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
matrix: ${{ fromJSON(needs.define-variables.outputs.build_matrix) }}
|
matrix: {
|
||||||
|
"include": [
|
||||||
|
{
|
||||||
|
"platform": "linux/amd64",
|
||||||
|
"slug": "linux-amd64"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "linux/arm64",
|
||||||
|
"slug": "linux-arm64"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"platform": [
|
||||||
|
"linux/amd64",
|
||||||
|
"linux/arm64"
|
||||||
|
]
|
||||||
|
}
|
||||||
steps:
|
steps:
|
||||||
- name: Echo strategy
|
- name: Echo strategy
|
||||||
run: echo '${{ toJSON(fromJSON(needs.define-variables.outputs.build_matrix)) }}'
|
run: echo '${{ toJSON(fromJSON(needs.define-variables.outputs.build_matrix)) }}'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue