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 448d212 commit 93d4655Copy full SHA for 93d4655
.github/workflows/deploy.yml
@@ -86,15 +86,15 @@ jobs:
86
87
- name: Set SSH Environment
88
env:
89
- DOCS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
+ DOCS_DEPLOY_KEY: ${{ secrets.DEPLOY_TOKEN }}
90
run: |
91
mkdir -p ~/.ssh/
92
- echo "$ACTIONS_DEPLOY_KEY" > ~/.ssh/id_rsa
+ echo "$DEPLOY_TOKEN" > ~/.ssh/id_rsa
93
chmod 600 ~/.ssh/id_rsa
94
ssh-keyscan github.com > ~/.ssh/known_hosts
95
chmod 700 ~/.ssh && chmod 600 ~/.ssh/*
96
- git config --local user.email "[email protected]"
97
- git config --local user.name "vbenAdmin"
+ git config --global user.email "[email protected]"
+ git config --global user.name "vbenAdmin"
98
99
- name: Build
100
0 commit comments