Merge branch 'main' into fix-python-server-startup #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build App Linux Debug | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
branches: | |
- fix-python-server-startup # just for testing | |
jobs: | |
build-linux-debug: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Declare some variables | |
run: | | |
echo "sha_short=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV" | |
shell: bash | |
- name: Build | |
uses: ./.github/actions/build/linux/app | |
with: | |
build-targets: '--targets=@electron-forge/maker-zip' | |
sign-and-publish: false | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: comfyui-electron-linux-debug-build-${{env.sha_short}} | |
path: out/make/zip/linux/x64/*.zip |