Skip to content

Commit

Permalink
Update workflow config to fix docker publish (#406)
Browse files Browse the repository at this point in the history
* Update workflow config to fix docker publish

* remove arm64 arch
  • Loading branch information
0x00101010 authored Feb 3, 2025
1 parent 50ae0f7 commit 26d3279
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 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]
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
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux/amd64, linux/arm64]
arch: [linux/amd64]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -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 26d3279

Please sign in to comment.