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:
@@ -90,10 +90,13 @@ system-tests:
# Make up a safe-ish place on the filesystem to write the key.
# Make up a safe-ish place on the filesystem to write the key.
KEY_PATH="$(mktemp -d)/deploy_key"
KEY_PATH="$(mktemp -d)/deploy_key"
# The environment variable holding the key is configured with GitLab
# The environment variable holding the path to the key is configured
# using Terraform so we can retain some bare minimum level of
# with GitLab using Terraform so we can retain some bare minimum level
# confidentiality.
# of confidentiality.
base64 --decode "${PRIVATESTORAGEIO_STAGING_SSH_DEPLOY_KEY}" > "${KEY_PATH}"
#
 
# 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
# Update the deployment
- |
- |
Loading