From f44128180a4e18915a058189a0464f4ace30bc21 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 26 Aug 2021 20:53:16 +0200 Subject: [PATCH] ci: add deployment workflow --- .github/workflows/deploy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 00000000..84fe214a --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,21 @@ +# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. +# Documentation: https://docs.github.com/en/actions + +name: deploy + +on: + push: + branches: + - main + +jobs: + + deploy: + runs-on: ubuntu-latest + + if: github.ref == 'refs/heads/main' + + steps: + + - name: Update the documentation + run: curl ${{ secrets.TRIGGER_DEPLOYMENT }}