File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,14 @@ jobs:
31
31
env :
32
32
ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
33
33
run : |
34
- echo "Changed files: ${{ steps.changed-files.outputs.all_changed_files }}"
35
-
36
- name : Run reusable docker
37
- if : ${{ contains(join(needs.DetectChanges.outputs.changed_files, ' '), '.github/docker/') }}
38
- permissions :
39
- contents : read
40
- packages : write
41
- secrets : inherit
42
- uses : ./.github/workflows/reusable_dockers_build.yml
34
+ echo "Changed files: $ALL_CHANGED_FILES"
43
35
36
+ RunReusableDocker :
37
+ needs : DetectChanges
38
+ runs-on : ubuntu-latest
39
+ if : ${{ contains(join(needs.DetectChanges.outputs.changed_files, ' '), '.github/docker/') }}
40
+ permissions :
41
+ contents : read
42
+ packages : write
43
+ secrets : inherit
44
+ uses : ./.github/workflows/reusable_dockers_build.yml
You can’t perform that action at this time.
0 commit comments