From 8ae175b316afbd5c61fe49752030c429c57cdfee Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Sun, 24 May 2020 20:49:46 +0200 Subject: Dockerize server --- .github/workflows/ci.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 951e3acd..ad557285 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,11 +32,13 @@ jobs: - name: Build with Gradle run: ./gradlew build -# When Travis CI doesn't publish on tags anymore: - -# publish: -# needs: build -# if: startsWith(github.ref, 'refs/tags/') -# steps: -# - name: Publish to Bintray -# run: ./gradlew bintrayUpload + - name: Docker push + uses: docker/build-push-action@v1 + with: + path: ./sw-server + username: ${{ github.actor }} + password: ${{ github.token }} + registry: docker.pkg.github.com + repository: hildan/seven-wonders/sw-server + tag_with_ref: true + tag_with_sha: true -- cgit