From 6897181d32b59838afc8f23fb53b408693eebc70 Mon Sep 17 00:00:00 2001 From: remittor Date: Mon, 29 Dec 2025 13:09:48 +0300 Subject: [PATCH] fix 2 --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfbb5bc..38eb37c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,8 +11,8 @@ on: options: - true - false - target_arch: - description: 'Target ARCH' + target_name: + description: 'Target Name' required: false default: 'r3d' type: string @@ -32,7 +32,7 @@ on: env: TEST_BUILD: ${{ github.event.inputs.test_build == 'true' }} - TARGET_ARCH: ${{ github.event.inputs.target_arch }} + TARGET_NAME: ${{ github.event.inputs.target_name }} FAKE_BUILD: ${{ github.event.inputs.fake_build == 'true' }} TAG_SUFFIX: ${{ github.event.inputs.fake_build == 'true' && '-fake' || github.event.inputs.test_build == 'true' && '-test' || '' }} REPO_URL: https://github.com/openwrt-xiaomi/openwrt @@ -62,7 +62,7 @@ jobs: fw_ver: ${{ steps.gh.outputs.fw_ver }} is_active: ${{ steps.activity.outputs.is_active }} test_build: ${{ env.TEST_BUILD }} - target_arch: ${{ env.TARGET_ARCH }} + target_name: ${{ env.TARGET_NAME }} fake_build: ${{ env.FAKE_BUILD }} steps: - name: Get repo data via GH API @@ -148,7 +148,7 @@ jobs: exclude: - { isTest: true } include: - - target: ${{ github.event.inputs.target_arch }} + - target: ${{ github.event.inputs.target_name }} steps: - name: Initialization environment env: @@ -222,7 +222,7 @@ jobs: if [ "$TEST_BUILD" != "true" ]; then make -j $MAKE_JOBS download world else - make -j $MAKE_JOBS V=sc download world + make V=sc download world fi fi # process results