From 92034484a9747adc8cb4c3eaa6d359ed2865e9d8 Mon Sep 17 00:00:00 2001 From: Dmitry Sharabin Date: Wed, 5 Nov 2025 13:22:00 +0100 Subject: [PATCH] [action] Deploy the website on push to the `main` branch This repo is a submodule of the website repo, so we need to deploy it on every change to this repo. --- .github/workflows/deploy-website.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/deploy-website.yml diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml new file mode 100644 index 0000000..311ca2f --- /dev/null +++ b/.github/workflows/deploy-website.yml @@ -0,0 +1,17 @@ +name: Deploy Website + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@4 + + - name: Trigger Netlify build + run: | + curl -X POST -d {} ${secrets.WEBSITE_BUILD_HOOK} # TODO: Replace with the organization's build hook secret