From 994061714542803f7af92a1c16940a3d42ae90b0 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 24 Oct 2024 17:32:14 -0400 Subject: [PATCH] Remove unnecessary QEMU, buildx --- .github/workflows/backend.yml | 4 ++++ .github/workflows/database.yml | 8 ++++---- .github/workflows/frontend.yml | 6 ++++-- .github/workflows/maintenance.yml | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 3f8df2017e..2c8cf9eb93 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -185,3 +185,7 @@ jobs: run: | deploy/scripts/build.py --components backend --debug --arch ${{ matrix.arch }} shell: bash + - name: Image digest + run: | + docker --debug image inspect combine_backend:latest -f '{{json .Id}}' + shell: bash diff --git a/.github/workflows/database.yml b/.github/workflows/database.yml index d6bf829d35..a97a0e8666 100644 --- a/.github/workflows/database.yml +++ b/.github/workflows/database.yml @@ -33,11 +33,11 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - name: Build database image run: | deploy/scripts/build.py --components database --debug --arch ${{ matrix.arch }} shell: bash + - name: Image digest + run: | + docker --debug image inspect combine_database:latest -f '{{json .Id}}' + shell: bash diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 28cc069240..e061162dbf 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -135,9 +135,11 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - name: Build frontend run: | deploy/scripts/build.py --components frontend --debug --arch ${{ matrix.arch }} shell: bash + - name: Image digest + run: | + docker --debug image inspect combine_frontend:latest -f '{{json .Id}}' + shell: bash diff --git a/.github/workflows/maintenance.yml b/.github/workflows/maintenance.yml index 7fe8b48994..e663effab3 100644 --- a/.github/workflows/maintenance.yml +++ b/.github/workflows/maintenance.yml @@ -37,9 +37,11 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - name: Build maintenance image run: | deploy/scripts/build.py --components maintenance --debug --arch ${{ matrix.arch }} shell: bash + - name: Image digest + run: | + docker --debug image inspect combine_maint:latest -f '{{json .Id}}' + shell: bash