From 10df4e1829768c460375a7d01b6251cd13d98ad1 Mon Sep 17 00:00:00 2001 From: Mao Nakamoto <41178744+maonakamoto@users.noreply.github.com> Date: Mon, 3 Aug 2026 09:58:35 +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 | 17 +++++++++++++++++ 1 file changed, 17 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 0000000..ad02e6b --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,17 @@ +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: solon + secrets: inherit