From e70befdb8b7d6a90e39134d5449722c6da6f0809 Mon Sep 17 00:00:00 2001 From: Dan Pock Date: Thu, 11 Jul 2024 15:24:59 -0400 Subject: [PATCH] call the scripts directly instead of with make --- .github/workflows/add-tag-to-existing-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add-tag-to-existing-image.yml b/.github/workflows/add-tag-to-existing-image.yml index ec25aec979..9a251a86bb 100644 --- a/.github/workflows/add-tag-to-existing-image.yml +++ b/.github/workflows/add-tag-to-existing-image.yml @@ -32,10 +32,10 @@ jobs: uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Run add-tag-to-existing-image.sh if: github.event.inputs.images != '' && github.event.inputs.tags != '' - run: make add-tag-to-existing-image.sh + run: ./scripts/add-tag-to-existing-image.sh - name: Run add-full-image-wrapper.sh if: github.event.inputs.full_images != '' - run: make add-full-image-wrapper.sh + run: ./scripts/add-full-image-wrapper.sh - name: Check for repository changes run: | if git diff --name-only --exit-code; then