From 4d28bdc19e37ed61678e5e337027d730962911fe Mon Sep 17 00:00:00 2001 From: Ryan Blue Date: Thu, 18 May 2023 00:02:43 -0400 Subject: [PATCH] [ci] Update Github Pages deploy action parameters (#5343) --- .github/workflows/documentation.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 256ba3fe72..c61b42878c 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -47,18 +47,18 @@ jobs: - name: Deploy Java 🚀 uses: JamesIves/github-pages-deploy-action@v4.4.1 with: - SSH: true - REPOSITORY_NAME: wpilibsuite/wpilibsuite.github.io - BRANCH: main - CLEAN: true - FOLDER: docs/build/docs/javadoc - TARGET_FOLDER: ${{ env.TARGET_FOLDER }}/java + ssh-key: true + repository-name: wpilibsuite/wpilibsuite.github.io + branch: main + clean: true + folder: docs/build/docs/javadoc + target-folder: ${{ env.TARGET_FOLDER }}/java - name: Deploy C++ 🚀 uses: JamesIves/github-pages-deploy-action@v4.4.1 with: - SSH: true - REPOSITORY_NAME: wpilibsuite/wpilibsuite.github.io - BRANCH: main - CLEAN: true - FOLDER: docs/build/docs/doxygen/html - TARGET_FOLDER: ${{ env.TARGET_FOLDER }}/cpp + ssh-key: true + repository-name: wpilibsuite/wpilibsuite.github.io + branch: main + clean: true + folder: docs/build/docs/doxygen/html + target-folder: ${{ env.TARGET_FOLDER }}/cpp