From 6cccaf49472e7cc3e24ff02f62eff29b1201b8d9 Mon Sep 17 00:00:00 2001 From: boryanagoncharenko <3010723+boryanagoncharenko@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:00:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20Fix=20failing=20alpha=20env=20(#?= =?UTF-8?q?6060)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add heroku cli to manual deployment to alpha * Second attempt to fix procfile --- .github/workflows/deploy-to-alpha-manually.yml | 5 ++++- Procfile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-alpha-manually.yml b/.github/workflows/deploy-to-alpha-manually.yml index c26612fe86f..66445181949 100644 --- a/.github/workflows/deploy-to-alpha-manually.yml +++ b/.github/workflows/deploy-to-alpha-manually.yml @@ -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}} diff --git a/Procfile b/Procfile index 26de605f0b6..066ed31d952 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn app:create_app +web: gunicorn 'app:create_app()'