Skip to content

Commit 1559b27

Browse files
committed
fix workflow
1 parent 7c640b1 commit 1559b27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/buildx.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
- name: "debug: Inspect the base alpine image postgres:${{ matrix.postgres }}-alpine${{ env.ALPINE_VERSION }} "
111111
if: ${{ env.VARIANT == 'alpine' }}
112-
run: docker pull --platform=${{ matrix.platforms }} postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }} && docker inspect postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }}
112+
run: docker pull postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }} && docker inspect postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }}
113113
env:
114114
DOCKER_DEFAULT_PLATFORM: ${{ matrix.platforms }}
115115
PLATFORM: ${{ matrix.platforms }}

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: "debug: Inspect the base alpine image postgres:${{ matrix.postgres }}-alpine${{ env.ALPINE_VERSION }} "
6060
if: ${{ env.VARIANT == 'alpine' }}
61-
run: docker pull --platform=${{ matrix.platforms }} postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }} && docker inspect postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }}
61+
run: docker pull postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }} && docker inspect postgres:${{ matrix.postgres }}-alpine{{ env.ALPINE_VERSION }}
6262

6363
- name: Build docker image for ${{ env.VERSION }} ${{ env.VARIANT }}${{ env.TAG_POSTFIX }}
6464
run: make test

0 commit comments

Comments
 (0)