Skip to content
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
5 changes: 2 additions & 3 deletions .github/workflows/deploy-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ jobs:

- name: Verify route is bound and Worker responds
env:
# Probe whichever route wrangler.toml currently binds. Update this
# when Phase 4a switches wrangler.toml to the production hostname.
PROBE_HOST: pkg-staging.claude-desktop-debian.dev
# Must match the hostname in worker/wrangler.toml's route.
PROBE_HOST: pkg.claude-desktop-debian.dev
run: |
# Wait briefly for deploy + DNS propagation
sleep 30
Expand Down
8 changes: 7 additions & 1 deletion worker/src/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@
//
// See docs/worker-apt-plan.md for the full architecture.

const ORIGIN = 'https://aaddrick.github.io/claude-desktop-debian';
// Raw gh-pages content, bypassing the Pages routing layer. Fetching
// via aaddrick.github.io auto-301s back to pkg.<domain> once the CNAME
// is in place (Pages' custom-domain redirect), creating a loop through
// this Worker. raw.githubusercontent.com serves the same branch content
// directly and is unaffected by the custom-domain config.
const ORIGIN =
'https://raw.githubusercontent.com/aaddrick/claude-desktop-debian/gh-pages';
const RELEASES =
'https://github.com/aaddrick/claude-desktop-debian/releases/download';

Expand Down
Loading