Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/build-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,15 @@ jobs:
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: bun run package -- --publish never --config ${{ inputs.electron_builder_config }}

- name: Verify app-update.yml exists
working-directory: apps/desktop
run: |
APP_DIR=$(ls -d release/mac-arm64/*.app | head -1)
test -f "$APP_DIR/Contents/Resources/app-update.yml" || {
echo "::error::app-update.yml missing from $APP_DIR/Contents/Resources/ — auto-update will be broken"
exit 1
}

- name: Upload DMG artifact
uses: actions/upload-artifact@v4
with:
Expand Down
Loading