Skip to content

Commit e670e69

Browse files
committed
fix: update paths in decryption script to reflect new structure
1 parent b553c8a commit e670e69

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy-proxy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ jobs:
7373
openssl enc -aes-256-cbc -d -salt -in .env.enc -out env_and_wrangler.tar.gz -iter 10000 -pass pass:"${{ secrets.CRYPTOKEN }}"
7474
tar -xzvf env_and_wrangler.tar.gz
7575
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"
76+
if [ ! -f wrangler.jsonc ]; then
77+
echo "Decrypted artifact does not contain wrangler.jsonc"
7878
exit 1
7979
fi
80-
if [ ! -f apps/mcp/secrets.json ]; then
81-
echo "Decrypted artifact does not contain apps/mcp/secrets.json"
80+
if [ ! -f secrets.json ]; then
81+
echo "Decrypted artifact does not contain secrets.json"
8282
exit 1
8383
fi
8484

0 commit comments

Comments
 (0)