From 73d8baee25e0b7cfd8554d26259103a9c2ad8d5d Mon Sep 17 00:00:00 2001 From: Aizawa Hikaru <37921907+azwhikaru@users.noreply.github.com> Date: Mon, 29 Nov 2021 02:00:45 +0800 Subject: [PATCH] =?UTF-8?q?2021/11/29=20=E6=9B=B4=E6=96=B0=20LIBRARY=5FNAM?= =?UTF-8?q?E=20=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2021/11/29 更新 LIBRARY_NAME 规则 --- .github/workflows/Make.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Make.yml b/.github/workflows/Make.yml index 5c2ffd3..c0d8305 100644 --- a/.github/workflows/Make.yml +++ b/.github/workflows/Make.yml @@ -5,8 +5,8 @@ on: inputs: LIBRARY_NAME: description: 'LIBRARY_NAME' - required: true - default: 'omni' + required: false + default: 'omni_' LIBRARY_URL: description: 'LIBRARY_URL' required: true @@ -97,7 +97,7 @@ jobs: cd ${{ steps.pwd.outputs.pwd }} export ALLOW_MISSING_DEPENDENCIES=true source build/envsetup.sh - lunch ${{ github.event.inputs.LIBRARY_NAME }}_${{ github.event.inputs.DEVICE_NAME }}-${{ github.event.inputs.DEVICE_TYPE }} + lunch ${{ github.event.inputs.LIBRARY_NAME }}${{ github.event.inputs.DEVICE_NAME }}-${{ github.event.inputs.DEVICE_TYPE }} make clean make recoveryimage -j$(nproc --all)