You Don’t Need the Workflow on main to Trigger It
I'm sometimes working on a long running feature branch. And sometimes I need to add some github actions workflow that needs to be run manually, and is specific to that feature. I create a...
Hi, I'm Ana and welcome to my dev blog. I share insights and practical solutions to coding problems that I face at work or my hobby dev time. Subscribe for new articles and check out my latest tutorials on YouTube.
I'm sometimes working on a long running feature branch. And sometimes I need to add some github actions workflow that needs to be run manually, and is specific to that feature. I create a...
This guide focuses on configuring subscriptions in an Expo app for both iOS and Android. In this walkthrough, I’m using RevenueCat with Expo SDK 53. The code builds on earlier Firebase integration examples. Repo is...
When working with Expo EAS cloud builds, I often run into similar issues like I do with GitHub actions, and debugging takes equally slow. Fortunately, I can ssh to Expo cloud runner. There are many reasons...
This guide covers from configuring the Admob account, setting up ios and android for expo managed workflow. I'm using https://github.com/invertase/react-native-google-mobile-ads. Configure Admob Go to your Admob account and click to...
Debugging GitHub actions, or any kind of CI runner, is time consuming. I usually mess up secrets that depend on exact structure, like private keys. First tip: use base64 to encode and decode secrets. Also, watch...
Getting Google login to work in Expo native and web isn't hard to code. It's the setup that trips you up. If you don't know what to watch out for....