We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5354016 commit f5003e1Copy full SHA for f5003e1
1 file changed
.github/workflows/operations.site.deploy.ddev.yml
@@ -110,6 +110,8 @@ jobs:
110
deploy-code:
111
name: Deploy Code
112
runs-on: ${{ inputs.github_runs_on }}
113
+ env:
114
+ SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
115
116
steps:
117
@@ -121,9 +123,9 @@ jobs:
121
123
122
124
# Enable SSH agent to allow preview sites to clone.
125
- uses: webfactory/ssh-agent@v0.9.1
- if: ${{ secrets.SSH_PRIVATE_KEY }}
126
+ if: ${{ env.SSH_PRIVATE_KEY }}
127
with:
- ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
128
+ ssh-private-key: ${{ env.SSH_PRIVATE_KEY }}
129
130
- name: Clone code
131
env:
0 commit comments