From 5a95234c16d791f3f9360c4ddcbf1e226e520fe6 Mon Sep 17 00:00:00 2001 From: Mao Nakamoto <41178744+maonakamoto@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:58:21 +0200 Subject: [PATCH] ci: deploy on push to main MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merged changes never reached the box — deploys only ran from a local pre-push hook. Calls the shared self-host CD workflow, which blocks on this commit's own CI before shipping. Co-Authored-By: Claude Opus 5 --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..d9db1ff5 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +name: Deploy + +# Push to main → deploy this app to bitbaum. All the logic lives in one +# place: maonakamoto/fleetcrown/.github/workflows/selfhost-deploy.yml +# (docs: docs/infrastructure/self-host-cd.md there). It waits for this +# commit's own CI to go green before anything reaches the box. + +on: + push: + branches: [main] + +jobs: + deploy: + uses: maonakamoto/fleetcrown/.github/workflows/selfhost-deploy.yml@main + with: + app: datacat-web + install-flags: --legacy-peer-deps + secrets: inherit