From a900d72cd33fb90af19a24c919b5088ed6baf74e Mon Sep 17 00:00:00 2001 From: Simon Hirtreiter Date: Mon, 9 Dec 2024 11:11:44 +0100 Subject: [PATCH] :rocket: docs init vi from template --- .github/workflows/deploy_docs.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/deploy_docs.yaml diff --git a/.github/workflows/deploy_docs.yaml b/.github/workflows/deploy_docs.yaml new file mode 100644 index 00000000..ccf7f1c5 --- /dev/null +++ b/.github/workflows/deploy_docs.yaml @@ -0,0 +1,19 @@ +# Sample workflow for building and deploying a VitePress site to GitHub Pages +# +name: Deploy VitePress site to Pages + +on: + # Runs on pushes targeting the `main` branch. Change this to `master` if you're + # using the `master` branch as the default branch. + push: + branches: [main] + paths: + - "docs/**" + - ".github/workflows/**" # define the concrete paths on which a change triggers this action, e.g. backend/** + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + deploy-pages: + uses: it-at-m/.github/.github/workflows/reuseable-template-deploy-pages.yml@main