Skip to content
This repository was archived by the owner on Aug 4, 2025. It is now read-only.

Commit 2cc7043

Browse files
committed
fix: match image names in makefile and github workflow
1 parent d4af39c commit 2cc7043

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/docker-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
include:
21-
- name: arda-pocd
21+
- name: arda-poc
2222
dockerfile: ./Dockerfile
23-
- name: tx-sidecar
23+
- name: arda-poc-tx-sidecar
2424
dockerfile: ./cmd/tx-sidecar/Dockerfile
2525

2626
steps:
@@ -38,7 +38,7 @@ jobs:
3838
id: meta
3939
uses: docker/metadata-action@v5
4040
with:
41-
images: ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.name }}
41+
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.name }}
4242
tags: |
4343
type=ref,event=branch
4444
type=ref,event=pr

cmd/tx-sidecar/transaction_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,8 @@ func BenchmarkGetTransactionEventsHandler(b *testing.B) {
494494
req := httptest.NewRequest(http.MethodGet, "/tx/events/"+txHash, nil)
495495
w := httptest.NewRecorder()
496496
server.getTransactionEventsHandler(w, req)
497-
497+
}
498+
}
498499

499500
func TestListTransactionsPagination(t *testing.T) {
500501
// Create a server with some test transactions

0 commit comments

Comments
 (0)