We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f5116 commit 577d5c5Copy full SHA for 577d5c5
.github/workflows/release.yml
@@ -120,13 +120,12 @@ jobs:
120
key: ${{ secrets.KEY }}
121
envs: JWTSECRET,MX_ENCRYPT_KEY
122
script: |
123
- set -e
124
whoami
125
cd
126
source ~/.zshrc
127
cd mx
128
ls -a
129
- node server-deploy.js --jwtSecret=$JWTSECRET --encrypt_key=$MX_ENCRYPT_KEY --encrypt_enable --scp_path=/tmp/mx-core/release-linux.zip
+ node server-deploy.js --jwtSecret=$JWTSECRET --encrypt_key=$MX_ENCRYPT_KEY --encrypt_enable --scp_path=/tmp/mx-core/release-linux.zip || { echo "Deploy failed"; exit 1; }
130
131
docker:
132
name: Docker Release
0 commit comments