Skip to content

Commit e14f45e

Browse files
committed
separated detect changes - test
1 parent 4b44fe4 commit e14f45e

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/detect_changes.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ jobs:
3131
env:
3232
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
3333
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"
4335
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

0 commit comments

Comments
 (0)