From 8c1a793b0a7764637dccbc5e9a3d48d8116dc7eb Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Wed, 16 Aug 2023 22:33:25 +0200 Subject: [PATCH] added workflow to update website version --- .github/workflows/website.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/website.yaml diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml new file mode 100644 index 00000000..686a0e16 --- /dev/null +++ b/.github/workflows/website.yaml @@ -0,0 +1,17 @@ +name: 'Website update' +on: + workflow_dispatch: + release: + types: [released] + +jobs: + build: + name: Trigger version update for website + runs-on: ubuntu-latest + steps: + - name: Emit repository_dispatch + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.WEBSITE_ACCESS_TOKEN }} + repository: kimai/www.kimai.org + event-type: kimai_release