Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ToDesktop staging application. #403

Merged
merged 1 commit into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [closed]

jobs:
build-stage-to-todesktop:
build-todesktop:
if: |
github.event_name == 'workflow_dispatch' ||
(github.event.pull_request.merged == true &&
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/publish_staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish Staging Application

on:
workflow_dispatch:

jobs:
build-staging-todesktop:
if: |
github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build/windows/todesktop
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
TODESKTOP_ACCESS_TOKEN: ${{secrets.TODESKTOP_ACCESS_TOKEN}}
TODESKTOP_EMAIL: ${{secrets.TODESKTOP_EMAIL}}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"package": "yarn run vite:compile && todesktop build --code-sign=false --async",
"prepare": "husky",
"publish": "yarn run vite:compile && todesktop build --async",
"publish:staging": "yarn run vite:compile && todesktop build --config=./todesktop.staging.json --async",
"reset-install": "node scripts/resetInstall.js",
"sign": "node debug/sign.js",
"start": "node ./scripts/launchdev.js",
Expand Down
10 changes: 10 additions & 0 deletions todesktop.staging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "./todesktop.json",
"id": "241125q2i8rhv",
"appId": "comfyui.staging.app",
"icon": "./assets/UI/Comfy_Logo_x128.png",
"packageJson": {
"name": "comfyui-staging",
"productName": "ComfyUI (Staging)"
}
}
Loading