diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d19a600..a474d1b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,7 +21,7 @@ jobs: build: strategy: matrix: - platform: [ "linux/amd64", "linux/arm64" ] + platform: [ "linux/amd64" ] # Use GitHub-hosted runner for amd64 and the arm64 partner runner for arm64 runs-on: ${{ matrix.platform == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }} permissions: @@ -81,8 +81,7 @@ jobs: # Convert IMAGE_NAME to lowercase LOWER_IMAGE_NAME=$(echo "${IMAGE_NAME}" | tr '[:upper:]' '[:lower:]') docker manifest create $REGISTRY/${LOWER_IMAGE_NAME}:latest \ - $REGISTRY/${LOWER_IMAGE_NAME}:latest-amd64 \ - $REGISTRY/${LOWER_IMAGE_NAME}:latest-arm64 + $REGISTRY/${LOWER_IMAGE_NAME}:latest-amd64 docker manifest push $REGISTRY/${LOWER_IMAGE_NAME}:latest - name: Create multi-arch manifest for version tag @@ -90,8 +89,7 @@ jobs: # Convert IMAGE_NAME to lowercase LOWER_IMAGE_NAME=$(echo "${IMAGE_NAME}" | tr '[:upper:]' '[:lower:]') docker manifest create $REGISTRY/${LOWER_IMAGE_NAME}:${{ inputs.version }} \ - $REGISTRY/${LOWER_IMAGE_NAME}:${{ inputs.version }}-amd64 \ - $REGISTRY/${LOWER_IMAGE_NAME}:${{ inputs.version }}-arm64 + $REGISTRY/${LOWER_IMAGE_NAME}:${{ inputs.version }}-amd64 docker manifest push $REGISTRY/${LOWER_IMAGE_NAME}:${{ inputs.version }} release: