You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
First thank you for this action, it's one of the last piece that we have not yet replaced from our deploy process to Heroku and I really appreciate having a simple way to deploy from GitHub Actions to Scalingo.
I've been trying to setup this actions to auto deploy our review app based on a comment on our PR, but I'm having some difficulties getting everything to work.
First, there is some issue in the documentation:
the @v1 action does not exist yet, @v0.1.1 should be used
api_token: '${{ secrets.scalingo_api_token }} should be api_token: ${{ secrets.scalingo_api_token }}
- Configure Scalingo CLI should be -name: Configure Scalingo CLI
The next issue I'm facing with git, it seems that the repository get added as expected, but I don't have any rights to read or write to it. Do I also need to add an SSH key to my GitHub action to be able to push to my repo or am I missing something?
Thank you
The text was updated successfully, but these errors were encountered:
Hello, thank you very much for your invaluable feedback, which I see on my return from vacation. I've just corrected the little issues in the documentation. I'm trying to use the extra-files option of release-please to update the version number of the Action automatically, I hope it will work to match the most recent version.
To use Git, as you said, you'll need to set up an SSH key, because unfortunately Scalingo doesn't support HTTPS connections. I haven't yet used the action in this way, in fact I've just implemented the basic option since it was present on the CLI. You should probably use an action like this to install the SSH key: Install SSH key (Github Marketplace) Feel free to let me know how you achieve so I can include it in the documentation or even inside the Composite Action.
Hello,
First thank you for this action, it's one of the last piece that we have not yet replaced from our deploy process to Heroku and I really appreciate having a simple way to deploy from GitHub Actions to Scalingo.
I've been trying to setup this actions to auto deploy our review app based on a comment on our PR, but I'm having some difficulties getting everything to work.
First, there is some issue in the documentation:
api_token: '${{ secrets.scalingo_api_token }}
should beapi_token: ${{ secrets.scalingo_api_token }}
- Configure Scalingo CLI
should be-name: Configure Scalingo CLI
The next issue I'm facing with git, it seems that the repository get added as expected, but I don't have any rights to read or write to it. Do I also need to add an SSH key to my GitHub action to be able to push to my repo or am I missing something?
Thank you
The text was updated successfully, but these errors were encountered: