Skip to content

Commit

Permalink
Update workflow config to fix docker publish
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00101010 committed Feb 3, 2025
1 parent 50ae0f7 commit a254233
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ env:
jobs:
geth:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux/amd64, linux/arm64]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Log into the Container registry
uses: docker/login-action@v3
Expand All @@ -32,7 +35,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
platforms: ${{ matrix.arch }}

- name: Extract metadata for the Docker image
id: meta
Expand All @@ -53,7 +56,7 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
platforms: ${{ matrix.arch }}
reth:
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
platforms: ${{ matrix.arch }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit a254233

Please sign in to comment.