We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b553c8a commit e670e69Copy full SHA for e670e69
1 file changed
.github/workflows/deploy-proxy.yaml
@@ -73,12 +73,12 @@ jobs:
73
openssl enc -aes-256-cbc -d -salt -in .env.enc -out env_and_wrangler.tar.gz -iter 10000 -pass pass:"${{ secrets.CRYPTOKEN }}"
74
tar -xzvf env_and_wrangler.tar.gz
75
rm env_and_wrangler.tar.gz .env.enc
76
- if [ ! -f apps/mcp/wrangler.jsonc ]; then
77
- echo "Decrypted artifact does not contain apps/mcp/wrangler.jsonc"
+ if [ ! -f wrangler.jsonc ]; then
+ echo "Decrypted artifact does not contain wrangler.jsonc"
78
exit 1
79
fi
80
- if [ ! -f apps/mcp/secrets.json ]; then
81
- echo "Decrypted artifact does not contain apps/mcp/secrets.json"
+ if [ ! -f secrets.json ]; then
+ echo "Decrypted artifact does not contain secrets.json"
82
83
84
0 commit comments