From ac2c582d3c6c636a8f0e3a3574a2c119e0f2039b Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Sun, 20 Apr 2025 10:09:49 +0200 Subject: [PATCH] GitHub Actions: install Heroku CLI https://github.com/AkhileshNS/heroku-deploy --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d00cba3f5..2e9a35ef14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,9 @@ jobs: bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake + - name: Install Heroku CLI + run: | + curl https://cli-assets.heroku.com/install.sh | sh - name: Deploy to Heroku uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28 # v3.14.15 with: