Skip to content

Commit

Permalink
🚚 Fix failing alpha env (#6060)
Browse files Browse the repository at this point in the history
* Add heroku cli to manual deployment to alpha

* Second attempt to fix procfile
  • Loading branch information
boryanagoncharenko authored Dec 20, 2024
1 parent 019f95b commit 6cccaf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy-to-alpha-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout Repository
uses: actions/checkout@v4
- name: 'Install Heroku CLI'
run: curl https://cli-assets.heroku.com/install.sh | sh
- uses: akhileshns/heroku-deploy@v3.13.15 # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: gunicorn app:create_app
web: gunicorn 'app:create_app()'

0 comments on commit 6cccaf4

Please sign in to comment.