fix: Docker version releases by removing arm/v6 and arm/v7 support (#8976)

This commit is contained in:
Corey
2024-03-04 23:54:42 -08:00
committed by GitHub
parent f9c39edcbc
commit 1f62dd0f4e
4 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ env:
IMAGE_NAME: parseplatform/parse-server
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
@@ -51,7 +51,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64/v8
platforms: linux/amd64, linux/arm64/v8
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}