We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d2a265 commit 908a2fbCopy full SHA for 908a2fb
.github/workflows/deploy.yml
@@ -86,10 +86,10 @@ jobs:
86
87
- name: Set SSH Environment
88
env:
89
- DOCS_DEPLOY_KEY: ${{ secrets.DEPLOY_TOKEN }}
+ DOCS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
90
run: |
91
mkdir -p ~/.ssh/
92
- echo "$DEPLOY_TOKEN" > ~/.ssh/id_rsa
+ echo "$ACTIONS_DEPLOY_KEY" > ~/.ssh/id_rsa
93
chmod 600 ~/.ssh/id_rsa
94
ssh-keyscan github.com > ~/.ssh/known_hosts
95
chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
@@ -106,7 +106,7 @@ jobs:
106
- name: Deploy
107
uses: peaceiris/[email protected]
108
109
- ACTIONS_DEPLOY_KEY: ${{secrets.DEPLOY_TOKEN}}
+ ACTIONS_DEPLOY_KEY: ${{secrets.ACTIONS_DEPLOY_KEY}}
110
PUBLISH_BRANCH: gh-pages
111
PUBLISH_DIR: ./dist
112
with:
0 commit comments