From 63f5d412cd1e1921e7ae375945f278267d542c5b Mon Sep 17 00:00:00 2001 From: Hazel Atkinson <19270622+yellowsink@users.noreply.github.com> Date: Fri, 11 Apr 2025 20:55:46 +0100 Subject: ci: i will become the fucking joker this is insane, fuck it, no arm support, take it or leave it --- .github/workflows/publish.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a8ef757..4367c8b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,12 +11,7 @@ on: jobs: publish: name: Publish Docker Image to ghcr.io - runs-on: ${{ matrix.runner }} - strategy: - fail-fast: false - matrix: - runner: [ubuntu-24.04, ubuntu-24.04-arm] - + runs-on: ubuntu-latest permissions: packages: write @@ -30,12 +25,6 @@ jobs: DOCKER_IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}" DOCKER_IMAGE_TAGS="$DOCKER_IMAGE_TAG_BASE:dev" - if [[ "${{ matrix.runner }}" == *-arm ]]; then - echo "DOCKER_PLATFORM=linux/arm64" >> $GITHUB_ENV - else - echo "DOCKER_PLATFORM=linux/amd64" >> $GITHUB_ENV - fi - # if this is a versioned release, github.ref will start with 'refs/tags/v' GH_REF="${{ github.ref }}" # cut off 'refs/tags/v' @@ -74,6 +63,6 @@ jobs: file: ./Dockerfile push: true tags: ${{ env.DOCKER_IMAGE_TAGS }} - platforms: ${{ env.DOCKER_PLATFORM }} + platforms: linux/amd64 cache-from: type=gha cache-to: type=gha,mode=max -- cgit