Merge pull request #247 from shink/list-targets/files

list-targets: Allow passing multi-line files
This commit is contained in:
CrazyMax
2024-10-08 11:09:18 +02:00
committed by GitHub
4 changed files with 54 additions and 5 deletions

View File

@ -38,9 +38,9 @@ jobs:
with:
workdir: ./test/group
-
name: Show matrix
name: Show targets
run: |
echo matrix=${{ steps.gen.outputs.matrix }}
echo targets=${{ steps.gen.outputs.targets }}
list-targets-group-matrix:
runs-on: ubuntu-latest
@ -56,6 +56,26 @@ jobs:
workdir: ./test/group-matrix
target: validate
-
name: Show matrix
name: Show targets
run: |
echo matrix=${{ steps.gen.outputs.matrix }}
echo targets=${{ steps.gen.outputs.targets }}
list-targets-multi-files:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Matrix gen
id: gen
uses: ./subaction/list-targets
with:
workdir: ./test/multi-files
files: |
docker-bake.json
docker-bake.hcl
-
name: Show targets
run: |
echo targets=${{ steps.gen.outputs.targets }}

View File

@ -29,7 +29,7 @@ runs:
with:
script: |
let def;
const files = `${{ inputs.files }}` ? `${{ inputs.files }}`.split(',') : [];
const files = `${{ inputs.files }}` ? `${{ inputs.files }}`.split(/[\r?\n,]+/).filter(Boolean) : [];
const target = `${{ inputs.target }}`;
await core.group(`Validating definition`, async () => {

View File

@ -0,0 +1,15 @@
group "default" {
targets = ["t3"]
}
target "t3" {
name = "${item.tag}"
matrix = {
item = t3
}
args = {
VERSION = "${item.version}"
DUMMY_ARG = "${item.arg}"
}
tags = ["${item.tag}"]
}

View File

@ -0,0 +1,14 @@
{
"t3": [
{
"version": "v1",
"arg": "v1-value",
"tag": "v1-tag"
},
{
"version": "v2",
"arg": "v2-value",
"tag": "v2-tag"
}
]
}