We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bab22 commit a6be94eCopy full SHA for a6be94e
.github/workflows/container_images.yml
@@ -143,6 +143,8 @@ jobs:
143
name: Build ${{ matrix.variance.name }} (${{ matrix.platform.arch }})
144
needs: build-toolchain
145
runs-on: ${{ matrix.platform.runner }}
146
+ env:
147
+ BUILDX_DRIVER: ${{ github.event_name == 'pull_request' && 'docker' || 'docker-container' }}
148
permissions:
149
contents: read
150
packages: write
@@ -227,6 +229,8 @@ jobs:
227
229
df -h
228
230
- name: Set up Docker Buildx
231
uses: docker/setup-buildx-action@v3
232
+ with:
233
+ driver: ${{ env.BUILDX_DRIVER }}
234
- name: Prepare BuildKit temp space
235
run: |
236
mkdir -p "${{ runner.temp }}/buildkit-tmp"
0 commit comments