From a58422aec3ae3b0f91f194ae389c38064ece6ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemek=20Wi=C4=99ch?= Date: Wed, 4 Mar 2026 20:17:32 +0100 Subject: [PATCH] Add deploy-everywhere GitHub action Runs both deploy actions, saves a few clicks to run both --- .github/workflows/deploy-everywhere.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/deploy-everywhere.yml diff --git a/.github/workflows/deploy-everywhere.yml b/.github/workflows/deploy-everywhere.yml new file mode 100644 index 0000000..e01f502 --- /dev/null +++ b/.github/workflows/deploy-everywhere.yml @@ -0,0 +1,10 @@ +name: Deploy everywhere + +on: workflow_dispatch + +jobs: + deploy-gh-pages: + uses: ./.github/workflows/deploy-gh-pages.yml + + deploy-wikitree-apps: + uses: ./.github/workflows/deploy-wikitree-apps.yml