Skip to content

Commit

Permalink
fixup target argument in "Make app" step of build-linux-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Aug 30, 2024
1 parent 57f19d9 commit 53e93ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/build/linux/app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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}}

0 comments on commit 53e93ab

Please sign in to comment.