Skip to content

Commit 9e13a6f

Browse files
authored
Fix repo specification for push to Docker Hub (#762)
Signed-off-by: Govind Kamat <[email protected]>
1 parent c0602b6 commit 9e13a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker-push-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Docker Build ${{ matrix.platform }}
4747
run: |
4848
docker buildx version
49-
tag=osb/osb-`echo ${{ matrix.platform }} | tr '/' '-'`
49+
tag=osb-`echo ${{ matrix.platform }} | tr '/' '-'`
5050
set -x
51-
docker buildx build --platform ${{ matrix.platform }} --build-arg VERSION=`cat version.txt` --build-arg BUILD_DATE=`date -u +%Y-%m-%dT%H:%M:%SZ` -f docker/Dockerfile -t "$tag" --push .
51+
docker buildx build --platform ${{ matrix.platform }} --build-arg VERSION=`cat version.txt` --build-arg BUILD_DATE=`date -u +%Y-%m-%dT%H:%M:%SZ` -f docker/Dockerfile -t opensearchstaging/opensearch-benchmark:"$tag" --push .
5252
set +x

0 commit comments

Comments
 (0)