Skip to content

Commit 78e21ca

Browse files
authored
Use bigger runner to publish images (#4237)
<!-- CURSOR_SUMMARY --> > [!NOTE] > **Low Risk** > CI/workflow-only change plus a version/changelog bump; low risk beyond potential runner availability/cost differences. > > **Overview** > Fixes CD Docker publishing failures by switching the `publish-images` GitHub Actions job runner from `ubuntu-latest` to `ubuntu-latest-m`, addressing "no space left on device" issues when pulling multi-arch images. > > Updates release metadata by bumping `unstructured/__version__.py` to `0.20.1` and adding a matching changelog entry describing the CI runner change. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit f6408c9. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent b536fc4 commit 78e21ca

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
ARCH=$(cut -d "/" -f2 <<< ${{ matrix.docker-platform }})
7070
docker push "$DOCKER_BUILD_REPOSITORY:$ARCH-$SHORT_SHA"
7171
publish-images:
72-
runs-on: ubuntu-latest
72+
runs-on: ubuntu-latest-m
7373
needs: [set-short-sha, build-images]
7474
env:
7575
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.20.1
2+
3+
### Fixes
4+
- Switch CD `publish-images` job runner from `ubuntu-latest` to `ubuntu-latest-m` to fix "no space left on device" error when pulling multi-arch Docker images
5+
16
## 0.20.0
27

38
### Enhancements

unstructured/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.20.0" # pragma: no cover
1+
__version__ = "0.20.1" # pragma: no cover

0 commit comments

Comments
 (0)