From 0e2e674d4667cad06d9756dbea48a37f5ba549de Mon Sep 17 00:00:00 2001 From: finlayclark Date: Wed, 8 May 2024 10:49:33 +0100 Subject: [PATCH] Update actions docs workflow --- .github/workflows/static.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index b9c9160..4e9aad6 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -4,7 +4,7 @@ name: Deploy static content to Pages on: # Runs on pushes targeting the default branch push: - branches: ["gh-pages"] + branches: ["main"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -36,8 +36,8 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - # Upload entire repository - path: '.' + # Upload _build directory + path: './_build' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4