From f8238d937fbe3c6614801c99662adc86f7d6f42c Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 8 Jun 2023 15:07:33 -0400 Subject: [PATCH] updated ci/cd with team name --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d4d960..6815cf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,11 +38,12 @@ jobs: uses: actions/checkout@v3 - name: deploy develop uses: akhileshns/heroku-deploy@v3.12.12 - with: + env: + heroku_api_key: ${{ secrets.HEROKU_API_KEY }} heroku_app_name: smartphone heroku_email: ${{ secrets.HEROKU_EMAIL }} run: | - git remote add heroku https://heroku:${HEROKU_API_KEY}@git.heroku.com/${heroku_app_name}.git + git remote add heroku https://heroku:${heroku_api_key}@git.heroku.com/${heroku_app_name}.git git config --local http.extraheader "Heroku-Space: ttt246" git push heroku develop:master --force