From bfe15e9f0ef69772d9230cd77500794defbeb83c Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Mon, 2 Sep 2024 21:17:08 -0700 Subject: [PATCH] Push cloud image to docker.io instead. --- .github/workflows/cd-cloud.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd-cloud.yml b/.github/workflows/cd-cloud.yml index 95bb0927..386a6ce0 100644 --- a/.github/workflows/cd-cloud.yml +++ b/.github/workflows/cd-cloud.yml @@ -18,13 +18,11 @@ jobs: run: echo "hash=$(openssl rand -hex 4)" >> $GITHUB_OUTPUT - uses: mr-smithers-excellent/docker-build-push@v6 - name: Build & push Docker image to ghcr.io + name: Build & push Docker image to docker.io with: - image: umami + image: umamisoftware/umami tags: cloud-${{ steps.random_hash.outputs.hash }}, cloud-latest buildArgs: DATABASE_TYPE=postgresql - registry: ghcr.io - multiPlatform: true - platform: linux/amd64 - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + registry: docker.io + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }}