Skip to content

Commit

Permalink
test(ci): test alternate ci/cd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-h1 committed Mar 3, 2025
1 parent 63ffafb commit b7c77b3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,7 @@ google-services-*.json
GoogleService-*-*.plist

.env.local

# build files
*.aab
*.apk
15 changes: 15 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash


# android

# fix google app id not being found
bun run eas build --platform android --profile production --local --non-interactive --output=./app-prod.apk
bun run eas submit -p android --path ./app-prod.apk


# ios

# fix google app id not being found
bun run eas build --platform ios --profile production --local --non-interactive --output=./app-prod.abd
bun run eas submit -p ios --path ./app-prod.abd

0 comments on commit b7c77b3

Please sign in to comment.