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()'