From 1253690c0604caa6a1f1c9732a404f24ccd0ba9b Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 28 Nov 2024 10:51:21 +0100 Subject: [PATCH] Update runs-on platform to self-hosted arm64 in production build workflow --- .github/workflows/production-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/production-build.yml b/.github/workflows/production-build.yml index cef9a39..4cd75c2 100644 --- a/.github/workflows/production-build.yml +++ b/.github/workflows/production-build.yml @@ -11,7 +11,7 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: [self-hosted, arm64] steps: - uses: actions/checkout@v3 - name: Login to ${{ env.GITHUB_REGISTRY }} @@ -25,7 +25,7 @@ jobs: with: context: . file: Dockerfile - platforms: linux/amd64 + platforms: linux/arm64 push: true tags: | ${{ env.GITHUB_REGISTRY }}/${{ env.IMAGE_NAME }}:latest