We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7eab21 + 7acb6ed commit 1122e41Copy full SHA for 1122e41
.github/workflows/deploy-network.yml
@@ -135,6 +135,16 @@ jobs:
135
terraform_version: "1.7.5"
136
terraform_wrapper: false # Disable the wrapper that adds debug output, this messes with reading terraform output
137
138
+ - name: Setup SSH key for CI Redis
139
+ env:
140
+ BUILD_INSTANCE_SSH_KEY: ${{ secrets.BUILD_INSTANCE_SSH_KEY }}
141
+ run: |
142
+ if [ -n "${BUILD_INSTANCE_SSH_KEY:-}" ]; then
143
+ mkdir -p ~/.ssh
144
+ echo "${BUILD_INSTANCE_SSH_KEY}" | base64 --decode > ~/.ssh/build_instance_key
145
+ chmod 600 ~/.ssh/build_instance_key
146
+ fi
147
+
148
- name: Deploy network
149
id: deploy-network
150
env:
0 commit comments