diff --git a/.github/workflows/import-patch-image.yml b/.github/workflows/import-patch-image.yml index 38a2dedc04d..64746b942b9 100755 --- a/.github/workflows/import-patch-image.yml +++ b/.github/workflows/import-patch-image.yml @@ -42,7 +42,7 @@ jobs: repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Resolve Modules id: set-matrix - run: bash ./scripts/resolve-patch-modules.sh ${{ inputs.arch }} "true" + run: bash ./${{ env.PROJECT_PATH }}/scripts/resolve-patch-modules.sh ${{ inputs.arch }} "true" resolve-modules: runs-on: ubuntu-24.04 outputs: @@ -59,7 +59,7 @@ jobs: repository: ${{ github.event.pull_request.head.repo.full_name }} - name: Resolve Modules id: set-matrix - run: bash ./scripts/resolve-patch-modules.sh ${{ inputs.arch }} + run: bash ./${{ env.PROJECT_PATH }}/scripts/resolve-patch-modules.sh ${{ inputs.arch }} build: needs: [ resolve-modules ] runs-on: ubuntu-24.04 diff --git a/scripts/resolve-patch-modules.sh b/lifecycle/scripts/resolve-patch-modules.sh similarity index 100% rename from scripts/resolve-patch-modules.sh rename to lifecycle/scripts/resolve-patch-modules.sh