From 04bb9fedba07f2d280d1218dcef1bf82058d6960 Mon Sep 17 00:00:00 2001 From: Parker Moore <237985+parkr@users.noreply.github.com> Date: Sat, 14 Dec 2024 22:55:54 +0000 Subject: [PATCH] Fix Heroku deployment with Actions --- .github/workflows/heroku.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/heroku.yml b/.github/workflows/heroku.yml index 98107f3..c9fc283 100644 --- a/.github/workflows/heroku.yml +++ b/.github/workflows/heroku.yml @@ -1,22 +1,22 @@ -name: "Deploy" - on: push: branches: - main - deploy-with-actions - -concurrency: "heroku" - +name: Deploy +concurrency: heroku jobs: custom-deploy: name: "Deploy to Heroku" runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # fetch full clone + - name: Install heroku CLI + run: | + curl https://cli-assets.heroku.com/install-ubuntu.sh | sh - name: Heroku login credentials run: | cat > ~/.netrc <