From 53e93abccab8469a550dee9e076d7462f7175ddb Mon Sep 17 00:00:00 2001 From: telamonian Date: Fri, 30 Aug 2024 13:02:14 -0400 Subject: [PATCH] fixup target argument in "Make app" step of build-linux-debug --- .github/actions/build/linux/app/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/build/linux/app/action.yml b/.github/actions/build/linux/app/action.yml index 7045a867..3d71ca72 100644 --- a/.github/actions/build/linux/app/action.yml +++ b/.github/actions/build/linux/app/action.yml @@ -25,7 +25,7 @@ runs: - name: install rpm, dpkg, fakeroot shell: bash run: | - echo "::echo::on" + set -x sudo apt update sudo apt install -y rpm dpkg fakeroot - name: Use Node.js 20.x @@ -41,7 +41,7 @@ runs: python-version: '3.12' - name: Install ComfyUI and create standalone package run: | - echo "::echo::on" + set -x pip install comfy-cli yarn make:assets:amd shell: bash @@ -53,5 +53,5 @@ runs: PUBLISH: ${{ inputs.sign-and-publish }} GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} run: | - echo "::echo::on" - yarn run $([ ${{inputs.sign-and-publish}} == true ] && echo 'publish' || echo 'make') -- ${{inputs.build-targets}} + set -x + yarn ${{inputs.sign-and-publish == true && 'publish' || 'make'}} ${{inputs.build-targets}}