Cannot deploy app with circleci.
1 week ago using "railway up --detach" command I could deploy app through circleci platform. Now it asks me to enter the environment. However, according to documentation when we call "railway up --detach" command it selects production environment by default. There is no another environment in my account, and it doesn't even show any available ones. It just shows the message: "Select a service to deploy to"
Project ID: c0fff2db-6720-4c73-9d17-16dcb92b2b5a
Solution:Jump to solution
an update was made to the cli that requires you specify the service you want to up into, since you could have a single database service in a project and up into that, if that database was in use, up'ing into that service would not be good, so while this was a breaking change, it was a much much needed change, all you should need to do is add this flag
--service <service id>
to your railway up
command4 Replies
Project ID:
c0fff2db-6720-4c73-9d17-16dcb92b2b5a
Solution
an update was made to the cli that requires you specify the service you want to up into, since you could have a single database service in a project and up into that, if that database was in use, up'ing into that service would not be good, so while this was a breaking change, it was a much much needed change, all you should need to do is add this flag
--service <service id>
to your railway up
commandThank a lot!👍