From 386e3973fc5629d6d3bb66a9742c4b6b13112fea Mon Sep 17 00:00:00 2001 From: Kim Burgestrand Date: Tue, 15 Oct 2024 12:25:17 +0200 Subject: [PATCH] How about this? --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d868b73..0accf9b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - uses: akhileshns/heroku-deploy@v3.13.15 - with: - heroku_api_key: ${{secrets.HEROKU_API_KEY}} - heroku_app_name: "sthlmrb" - branch: "master" - heroku_email: "albert@auctionet.com" + - name: Deploy to Heroku + env: + HEROKU_API_KEY: ${{ secrets.HEROKU_API_SECRET }} + run: | + git remote add heroku https://:${HEROKU_API_KEY}@git.heroku.com/sthlmrb.git + git push heroku master