From 2ca71efa297e5bd57812ff7b15ad25ad62df2a73 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 10 Mar 2024 21:30:22 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Re-enables=20docs=20site=20build?= =?UTF-8?q?=20automation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-docs-site.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build-docs-site.yml diff --git a/.github/workflows/build-docs-site.yml b/.github/workflows/build-docs-site.yml new file mode 100644 index 00000000..71a351dd --- /dev/null +++ b/.github/workflows/build-docs-site.yml @@ -0,0 +1,18 @@ +# Builds and published Dashy's documentation website +name: Build Docs Site +on: + workflow_dispatch: + push: + branches: [ WEBSITE/docs-site-source ] +jobs: + deploy: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/WEBSITE/docs-site-source' + steps: + - uses: actions/checkout@master + - uses: redkubes/docusaurus-deploy-action@v1 + with: + source-folder: ./ + git-user: ${{ github.actor }} + git-password: ${{ secrets.GITHUB_TOKEN }} + deployment-branch: gh-pages