From d379913110ebf180a64626c71a4822180e8928d4 Mon Sep 17 00:00:00 2001 From: zbieracz2000 Date: Sun, 14 May 2023 12:14:14 +0200 Subject: [PATCH] Fixed common device tree cloning For some reason the common tree was cloned into a wrong directory, and was not detected by the builder. Fixed with a simple cd. --- .github/workflows/Recovery Build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Recovery Build.yml b/.github/workflows/Recovery Build.yml index 7a94dd8..c8c199d 100644 --- a/.github/workflows/Recovery Build.yml +++ b/.github/workflows/Recovery Build.yml @@ -94,6 +94,7 @@ jobs: github.event.inputs.COMMON_TREE_URL != null && github.event.inputs.COMMON_PATH != null run: | + cd ${{ steps.pwd.outputs.workspace-folder }}/fox_${{ github.event.inputs.MANIFEST_BRANCH }} git clone ${{ github.event.inputs.COMMON_TREE_URL }} -b ${{ github.event.inputs.DEVICE_TREE_BRANCH }} ./${{ github.event.inputs.COMMON_PATH }} working-directory: ${{ steps.pwd.outputs.workspace-folder }} @@ -132,4 +133,4 @@ jobs: Device: ${{ github.event.inputs.DEVICE_NAME }} Target: ${{ github.event.inputs.BUILD_TARGET }} env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}