From 0e46d43be8a9a31303434b2c31c9b7d7cfeb9e75 Mon Sep 17 00:00:00 2001 From: Nicholas Wiltsie Date: Wed, 6 Mar 2024 09:15:01 -0800 Subject: [PATCH] Add new doc generation Action --- .github/workflows/deploy-docs.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 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 0000000..942a508 --- /dev/null +++ b/.github/workflows/deploy-docs.yaml @@ -0,0 +1,21 @@ +--- +name: Build and Deploy Docs + +on: + workflow_dispatch: + push: + branches: + - main + tags: + - 'v[0-9]*' + +jobs: + build: + name: Deploy docs + runs-on: ubuntu-latest + steps: + - name: Checkout main + uses: actions/checkout@v4 + + - name: Deploy docs + uses: uclahs-cds/tool-Nextflow-action/build-and-deploy-docs@main