From 15b75bd01280ecda6fb29f4a73d0f2838d307b3b Mon Sep 17 00:00:00 2001 From: Jeremy Green Date: Mon, 30 Dec 2024 16:22:42 -0600 Subject: [PATCH] Install the heroku CLI before deploying to heroku Hopefully this is temporary and the `heroku-deploy` action will eventually handle this for us. https://github.com/AkhileshNS/heroku-deploy/issues/188 --- .github/workflows/_deploy_heroku.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/_deploy_heroku.yml b/.github/workflows/_deploy_heroku.yml index 77e7699dc..540dac649 100644 --- a/.github/workflows/_deploy_heroku.yml +++ b/.github/workflows/_deploy_heroku.yml @@ -22,6 +22,11 @@ jobs: heroku: runs-on: ubuntu-latest steps: + # TODO: Will the heroku-deploy action eventually handle this for us? + # https://github.com/AkhileshNS/heroku-deploy/issues/188 + - name: Install Heroku CLI + run: | + curl https://cli-assets.heroku.com/install.sh | sh - uses: actions/checkout@v4 - uses: akhileshns/heroku-deploy@v3.12.12 # This is the action with: