Skip to content

Commit dc2cd75

Browse files
chore: add Docker Buildx setup step to GitHub Actions workflow
- Introduce a step to set up Docker Buildx for enhanced multi-platform builds in the workflow.
1 parent 8b908c5 commit dc2cd75

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/artifacts.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ jobs:
5858
id: get_owner_lowercase
5959
run: |
6060
echo "OWNER_LOWERCASE=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
61+
62+
- name: Set up Docker Buildx
63+
uses: docker/setup-buildx-action@v3
6164

6265
- name: Build and push docker image
6366
uses: docker/build-push-action@v5

0 commit comments

Comments
 (0)