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