Skip to content

Commit 824d933

Browse files
committed
Change actions_deploy_key to secrets.DOCUMENTATION_DEPLOY_KEY
- This is to match the name of the secret that I just created in the settings of TorchJD/torchjd
1 parent 7b8b273 commit 824d933

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Deploy Documentation to GitHub Pages
4848
uses: peaceiris/actions-gh-pages@v4
4949
with:
50-
actions_deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
50+
actions_deploy_key: ${{ secrets.DOCUMENTATION_DEPLOY_KEY }}
5151
publish_dir: docs/build/dirhtml
5252
destination_dir: ${{ steps.deploy_folder.outputs.DEPLOY_DIR }}
5353
external_repository: TorchJD/documentation.github.io
@@ -57,7 +57,7 @@ jobs:
5757
if: startsWith(github.ref, 'refs/tags/')
5858
uses: peaceiris/actions-gh-pages@v4
5959
with:
60-
actions_deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
60+
actions_deploy_key: ${{ secrets.DOCUMENTATION_DEPLOY_KEY }}
6161
publish_dir: docs/build/dirhtml
6262
destination_dir: stable
6363
external_repository: TorchJD/documentation.github.io

0 commit comments

Comments
 (0)