This is an automated email from the ASF dual-hosted git repository.
zrhoffman pushed a commit to branch asf-arm-runner
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
The following commit(s) were added to refs/heads/asf-arm-runner by this push:
new d238ee456e Action to set up Docker buildx
d238ee456e is described below
commit d238ee456efcd0d76f2995bd724ef31a13c5e457
Author: Zach Hoffman <[email protected]>
AuthorDate: Tue May 21 14:01:12 2024 -0600
Action to set up Docker buildx
---
.github/workflows/container-trafficserver-alpine.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.github/workflows/container-trafficserver-alpine.yml
b/.github/workflows/container-trafficserver-alpine.yml
index 29c46d08b6..2eb5406540 100644
--- a/.github/workflows/container-trafficserver-alpine.yml
+++ b/.github/workflows/container-trafficserver-alpine.yml
@@ -108,6 +108,9 @@ jobs:
run: cp .env '${{ github.env }}'
- name: Set image name
run: echo 'IMAGE_NAME=${{ env.CONTAINER }}:${{ env.ATS_VERSION }}-${{
env.PLATFORM }}' >> '${{ github.env }}'
+ - name: Set up Docker Buildx
+ if: ${{ env.SHOULD_RUN == '1' }}
+ uses: docker/setup-buildx-action@v3
- name: Build ${{ env.IMAGE_NAME }}
if: ${{ env.SHOULD_RUN == '1' }}
working-directory: .github/containers/trafficserver-alpine