Skip to content

Commit

Permalink
🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
haileyok committed Mar 13, 2024
1 parent 13cf963 commit 5d6f00c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle-deploy-eas-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
- name: 📦 Package Bundle and 🚀 Deploy
run: yarn make-deploy-bundle
env:
DENNIS_API_KEY: ${{ secrets.DENNIS_API_KEY }}
DENIS_API_KEY: ${{ secrets.DENIS_API_KEY }}
8 changes: 4 additions & 4 deletions scripts/bundleUpdate.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset

rm -rf bundleTempDir
rm -rf bundle.tar.gz
Expand All @@ -16,10 +19,7 @@ tar czvf bundle.tar.gz ./*

echo "Deploying to $DEPLOYMENT_URL..."

curl -o - --form "bundle=@./bundle.tar.gz" \
--user "bsky:$DENNIS_API_KEY" \
--basic "$DEPLOYMENT_URL" \
/
curl -o - --form "bundle=@./bundle.tar.gz" --user "bsky:$DENIS_API_KEY" --basic "$DEPLOYMENT_URL"

cd ..

Expand Down

0 comments on commit 5d6f00c

Please sign in to comment.