From 65319969ccc11890e2e78c61cd894672b7842665 Mon Sep 17 00:00:00 2001 From: Kim Burgestrand Date: Tue, 15 Oct 2024 12:28:00 +0200 Subject: [PATCH] Kinda need quotes to avoid bash interpreting this --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4c466d8..0c22d52 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,5 +14,5 @@ jobs: env: HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} run: | - git remote add heroku https://:${HEROKU_API_KEY}@git.heroku.com/sthlmrb.git + git remote add heroku "https://:${HEROKU_API_KEY}@git.heroku.com/sthlmrb.git" git push heroku master