Using a different value for react-native in package.json

I’m trying to run expo publish as a build step in my (bitbucket) CI.

The problem is (I think) that the build crashes when it comes to:

"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz"

Before I go breaking stuff: What’s the best alternate way to install react-native here in a way that doesn’t mess up expo?

Thanks.

I was wrong in my assumption on this.

The problem was, following these docs, that the alpine image didn’t have git, so I added it like in the below.

replace: - apk add --no-cache bash
with: - apk add --no-cache bash git

1 Like