build: larger images for docker publish (#2082)

Build and publish docker images on larger runner to work around the
space issue here:
https://github.com/Unstructured-IO/unstructured/actions/runs/6871101034/job/18689403845
.
This commit is contained in:
cragwolfe 2023-11-15 06:46:53 -08:00 committed by GitHub
parent b8a8de33f4
commit d7a280402f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
docker-platform: ["linux/arm64", "linux/amd64"]
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
needs: set-short-sha
env:
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}
@ -75,7 +75,7 @@ jobs:
ARCH=$(cut -d "/" -f2 <<< ${{ matrix.docker-platform }})
docker push "$DOCKER_BUILD_REPOSITORY:$ARCH-$SHORT_SHA"
publish-images:
runs-on: ubuntu-latest
runs-on: ubuntu-latest-m
needs: [set-short-sha, build-images]
env:
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}