Skip to content

Commit a3586f4

Browse files
authored
Merge pull request #31 from devilbox/release-0.1.43
Fix buildx install
2 parents 6d20e72 + 58663df commit a3586f4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: "[SETUP] Install Docker Buildx"
7676
id: buildx
77-
uses: buluma/setup-buildx-action@v1
77+
uses: docker/setup-buildx-action@v1
7878

7979
- name: "[SETUP] Set artifact names"
8080
id: set-artifact-name
@@ -91,8 +91,12 @@ jobs:
9191
- name: "[DEBUG] Show setup"
9292
shell: bash
9393
run: |
94-
echo 'buildx platforms: ${{ steps.buildx.outputs.platforms }}'
95-
echo 'qemu platforms: ${{ steps.qemu.outputs.platforms }}'
94+
echo '(qemu) Platforms: ${{ steps.qemu.outputs.platforms }}'
95+
echo "(buildx) Name: ${{ steps.buildx.outputs.name }}"
96+
echo "(buildx) Endpoint: ${{ steps.buildx.outputs.endpoint }}"
97+
echo "(buildx) Status: ${{ steps.buildx.outputs.status }}"
98+
echo "(buildx) Flags: ${{ steps.buildx.outputs.flags }}"
99+
echo "(buildx) Platforms: ${{ steps.buildx.outputs.platforms }}"
96100
97101
98102
# ------------------------------------------------------------

0 commit comments

Comments
 (0)