We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd37f67 commit 2143075Copy full SHA for 2143075
src/scripts/deploy.sh
@@ -29,10 +29,10 @@ ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key"
29
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv"
30
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR}
31
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR}
32
-openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in scripts/deploy_key.enc -out scripts/deploy_key -d
33
-chmod 600 scripts/deploy_key
+openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in src/scripts/deploy_key.enc -out src/scripts/deploy_key -d
+chmod 600 src/scripts/deploy_key
34
eval `ssh-agent -s`
35
-ssh-add scripts/deploy_key
+ssh-add src/scripts/deploy_key
36
37
# Now that we're all set up, we can deploy
38
npm run deploy
0 commit comments