summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b1adadaa..0e0ea673 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -43,6 +43,16 @@ jobs:
tag_with_ref: true
tag_with_sha: true
+ - name: Docker push to DockerHub
+ uses: docker/build-push-action@v1
+ with:
+ path: ./sw-server
+ username: hildan
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ repository: hildan/seven-wonders-server
+ tag_with_ref: true
+ tag_with_sha: true
+
# - name: Docker push to GitHub Packages
# uses: docker/build-push-action@v1
# with:
bgstack15