From 2068acad2dd58023edf08bb059f706d03eda6b5f Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Mon, 25 May 2020 02:33:19 +0200 Subject: Attempt at heroku-deploy action --- .github/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46366c9f..f38cb015 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,12 +44,10 @@ jobs: tag_with_sha: true - name: Docker push to Heroku - uses: docker/build-push-action@v1 + uses: akhileshns/heroku-deploy@v3.0.4 with: - path: ./sw-server - username: _ - password: ${{ secrets.HEROKU_API_KEY }} - registry: registry.heroku.com - repository: seven-wonders-online/web - tag_with_ref: true - tag_with_sha: true + heroku_api_key: ${{secrets.HEROKU_API_KEY}} + heroku_app_name: "seven-wonders-online" + heroku_email: ${{secrets.HEROKU_EMAIL}} + usedocker: true + appdir: "./sw-server" -- cgit