From 24922f14f9fb12393b0fdb798638c4b148013b69 Mon Sep 17 00:00:00 2001 From: Tim Gels Date: Wed, 4 Mar 2026 20:05:51 +0100 Subject: [PATCH] ci: add workflow to notify website on new release --- .github/workflows/notify-website.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/notify-website.yml diff --git a/.github/workflows/notify-website.yml b/.github/workflows/notify-website.yml new file mode 100644 index 0000000..eb38dcf --- /dev/null +++ b/.github/workflows/notify-website.yml @@ -0,0 +1,17 @@ +name: Notify website of new release + +on: + release: + types: [published] + +jobs: + dispatch: + runs-on: ubuntu-latest + steps: + - name: Trigger website version update + env: + GH_TOKEN: ${{ secrets.WEBSITE_DISPATCH_TOKEN }} + run: | + gh api repos/TimGels/matroskabatchflow.com/dispatches \ + --method POST \ + -f event_type=release-published