diff --git a/.github/workflows/build_beta.yaml b/.github/workflows/build_beta.yaml index 9c3d245..1cf5aca 100644 --- a/.github/workflows/build_beta.yaml +++ b/.github/workflows/build_beta.yaml @@ -29,7 +29,7 @@ jobs: - name: Login to GCR uses: docker/login-action@v2 with: - registry: gcr.io + registry: us-docker.pkg.dev username: _json_key password: ${{ secrets.GCR_JSON_KEY }} - name: Build and push @@ -41,7 +41,7 @@ jobs: no-cache: true build-args: | RUN_AS_USER=plaid - tags: gcr.io/plaidcloud-build/redistomp:latest,gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }} + tags: us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:latest,us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }} - name: Checkout GitOps Repository uses: actions/checkout@v3 @@ -55,7 +55,6 @@ jobs: - name: Update Control Plane & Tenant Image uses: fjogeleit/yaml-update-action@main with: - # valueFile: 'controlplane/environment-values/ci-cluster.yaml' repository: PlaidCloud/plaid-tenant-infrastructure branch: beta message: 'Update STOMP Image to ${{ steps.docker_tag.outputs.tag }}' @@ -64,9 +63,9 @@ jobs: changes: | { "controlplane/values.yaml": { - "apps.stomp.image": "gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }}" + "apps.stomp.image": "us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }}" }, "tenants/values.yaml": { - "apps.stomp.image": "gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }}" + "apps.stomp.image": "us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }}" } } diff --git a/.github/workflows/build_io.yaml b/.github/workflows/build_io.yaml index bca423b..9588659 100644 --- a/.github/workflows/build_io.yaml +++ b/.github/workflows/build_io.yaml @@ -29,7 +29,7 @@ jobs: - name: Login to GCR uses: docker/login-action@v2 with: - registry: gcr.io + registry: us-docker.pkg.dev username: _json_key password: ${{ secrets.GCR_JSON_KEY }} - name: Build and push @@ -41,7 +41,7 @@ jobs: no-cache: true build-args: | RUN_AS_USER=plaid - tags: gcr.io/plaidcloud-build/redistomp:latest,gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }} + tags: us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:latest,us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }} - name: Checkout GitOps Repository uses: actions/checkout@v3 @@ -55,7 +55,6 @@ jobs: - name: Update Control Plane & Tenant Image uses: fjogeleit/yaml-update-action@main with: - # valueFile: 'controlplane/environment-values/ci-cluster.yaml' repository: PlaidCloud/plaid-tenant-infrastructure branch: master message: 'Update STOMP Image to ${{ steps.docker_tag.outputs.tag }}' @@ -64,10 +63,10 @@ jobs: changes: | { "controlplane/values.yaml": { - "apps.stomp.image": "gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }}" + "apps.stomp.image": "us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }}" }, "tenants/values.yaml": { - "apps.stomp.image": "gcr.io/plaidcloud-build/redistomp:${{ steps.docker_tag.outputs.tag }}" + "apps.stomp.image": "us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:${{ steps.docker_tag.outputs.tag }}" } }