Commit d963196 1 parent 12f1cb6 commit d963196 Copy full SHA for d963196
File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 38
38
# Get diff array filtered by specific filetypes
39
39
DIFF=$(git diff --diff-filter=d \
40
40
--name-only ${{ github.event.pull_request.base.sha }}...${{ github.event.pull_request.head.sha }} \
41
- -- '*/*Dockerfile' '*.py' '*.yaml' '*.yml' '*.sh' '*/*requirements.txt' '*.json' '*/*/* .def' | \
41
+ -- '*/*Dockerfile' '*.py' '*.yaml' '*.yml' '*.sh' '*/*requirements.txt' '*.json' '*/*/apptainer .def' | \
42
42
jq -R '.' | jq -sc '.' \
43
43
)
44
44
# Search for compose files in each file to determine the container groups
57
57
# Convert the array to a JSON array
58
58
DOCKER_COMPOSE_PATHS_JSON=$(printf '%s\n' "${DOCKER_COMPOSE_PATHS[@]}" | jq -R '.' | jq -sc 'unique_by(.)')
59
59
echo "FOLDERS=$DOCKER_COMPOSE_PATHS_JSON" >> $GITHUB_OUTPUT
60
- echo $DOCKER_COMPOSE_PATHS
61
- echo $FOLDERS
62
60
setup-build :
63
61
needs : [group-diff]
64
62
runs-on : ${{ github.repository_owner == 'intel' && 'intel-ubuntu-latest' || 'ubuntu-latest' }}
You can’t perform that action at this time.
0 commit comments