Skip to content
Snippets Groups Projects

Merge develop into staging

Merged Jean-Paul Calderone requested to merge develop into staging
1 file
+ 7
4
Compare changes
  • Side-by-side
  • Inline
+ 7
4
@@ -90,10 +90,13 @@ system-tests:
# Make up a safe-ish place on the filesystem to write the key.
KEY_PATH="$(mktemp -d)/deploy_key"
# The environment variable holding the key is configured with GitLab
# using Terraform so we can retain some bare minimum level of
# confidentiality.
base64 --decode "${PRIVATESTORAGEIO_STAGING_SSH_DEPLOY_KEY}" > "${KEY_PATH}"
# The environment variable holding the path to the key is configured
# with GitLab using Terraform so we can retain some bare minimum level
# of confidentiality.
#
# It contains the *path to the key*. It does not contain the key
# itself.
base64 --decode "${PRIVATESTORAGEIO_SSH_DEPLOY_KEY_PATH}" > "${KEY_PATH}"
# Update the deployment
- |
Loading