diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-25 02:33:19 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-25 02:33:19 +0200 |
commit | 2068acad2dd58023edf08bb059f706d03eda6b5f (patch) | |
tree | 921e60c2595198e51e0393fe6a5edf021e989810 /.github | |
parent | Attempt at fixing up StompSession.request() (diff) | |
download | seven-wonders-2068acad2dd58023edf08bb059f706d03eda6b5f.tar.gz seven-wonders-2068acad2dd58023edf08bb059f706d03eda6b5f.tar.bz2 seven-wonders-2068acad2dd58023edf08bb059f706d03eda6b5f.zip |
Attempt at heroku-deploy action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files 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" |