summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml17
1 files changed, 14 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e44a5bf8..40df24c9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -32,17 +32,28 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- - name: Docker push to GitHub Packages
+ - name: Docker push to GitHub Container Registry
uses: docker/build-push-action@v1
with:
path: ./sw-server
username: ${{ github.actor }}
password: ${{ github.token }}
- registry: docker.pkg.github.com
- repository: joffrey-bion/seven-wonders/sw-server
+ registry: ghcr.io
+ repository: joffrey-bion/seven-wonders-server
tag_with_ref: true
tag_with_sha: true
+# - name: Docker push to GitHub Packages
+# uses: docker/build-push-action@v1
+# with:
+# path: ./sw-server
+# username: ${{ github.actor }}
+# password: ${{ github.token }}
+# registry: docker.pkg.github.com
+# repository: joffrey-bion/seven-wonders/sw-server
+# tag_with_ref: true
+# tag_with_sha: true
+
# - name: Docker push to Heroku
# uses: docker/build-push-action@v1
# with:
bgstack15