From 61f42c5297eab5a148a94e7570fc54994694adb3 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Tue, 20 May 2025 14:41:20 -0400 Subject: [PATCH] Nitpicking about alphabetizing methods, minor OCD thing --- .gitea/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 09209e6..67a7b3a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -30,11 +30,12 @@ jobs: - name: 🏗️ 🔧 Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: 🐳 🔨 Build Backend Container + - name: 🐳 🔨 Build Server Container uses: docker/build-push-action@v6 with: sbom: true provenance: true + platforms: linux/arm64,linux/amd64 context: . dockerfile: Dockerfile push: true @@ -44,11 +45,12 @@ jobs: run: | sed -i '' 's/server/grpc/g' Dockerfile - - name: 🐳 🔨 Build Backend Container + - name: 🐳 🔨 Build Grpc Container uses: docker/build-push-action@v6 with: sbom: true provenance: true + platforms: linux/arm64,linux/amd64 context: . dockerfile: Dockerfile push: true