From 600de7a12b18d4354d354e15b91b93ada937202d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Sat, 3 Jun 2023 18:05:58 +0200 Subject: [PATCH] Update the deployment job to only deploy the static files --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3bf1218..7313c67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,13 +46,14 @@ jobs: uses: actions/download-artifact@v3 with: name: website + path: ./_site - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@releases/v3 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages - FOLDER: . + FOLDER: _site GIT_CONFIG_NAME: OpenIddict Bot GIT_CONFIG_EMAIL: 32257313+openiddict-bot@users.noreply.github.com COMMIT_MESSAGE: Update the documentation pages