summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-25 02:48:45 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-25 02:48:45 +0200
commit724dd0346c411c23c35bd9305ecff6539773f340 (patch)
tree32b6885094e912b0e9ec790527e7731ba5111641 /.github/workflows
parentAdd more debug traces to tests (diff)
downloadseven-wonders-724dd0346c411c23c35bd9305ecff6539773f340.tar.gz
seven-wonders-724dd0346c411c23c35bd9305ecff6539773f340.tar.bz2
seven-wonders-724dd0346c411c23c35bd9305ecff6539773f340.zip
Re-enable heroku deployment from travis CI
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml27
1 files changed, 19 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f38cb015..e44a5bf8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -43,11 +43,22 @@ jobs:
tag_with_ref: true
tag_with_sha: true
- - name: Docker push to Heroku
- uses: akhileshns/heroku-deploy@v3.0.4
- with:
- heroku_api_key: ${{secrets.HEROKU_API_KEY}}
- heroku_app_name: "seven-wonders-online"
- heroku_email: ${{secrets.HEROKU_EMAIL}}
- usedocker: true
- appdir: "./sw-server"
+# - name: Docker push to Heroku
+# uses: docker/build-push-action@v1
+# 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
+
+# - name: Docker push to Heroku
+# uses: akhileshns/heroku-deploy@v3.0.4
+# with:
+# heroku_api_key: ${{secrets.HEROKU_API_KEY}}
+# heroku_app_name: "seven-wonders-online"
+# heroku_email: ${{secrets.HEROKU_EMAIL}}
+# usedocker: true
+# appdir: "./sw-server"
bgstack15