Skip to content

Commit

Permalink
[Minor] fix(docker-image): Fix bugs in publishing Iceberg rest server…
Browse files Browse the repository at this point in the history
… docker image (#4692)

### What changes were proposed in this pull request?

Fix the bugs about github environment for image_type

### Why are the changes needed?

it's a bug.


### Does this PR introduce _any_ user-facing change?

N/A

### How was this patch tested?

test locally.
  • Loading branch information
yuqi1129 authored Aug 26, 2024
1 parent 67d0cf5 commit 2ac2f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/hostedtoolcache/CodeQL
if [[ "${image_type}" == "gravitino" || "{image_type}" == "iceberg-rest-server" ]]; then
if [[ "${image_type}" == "gravitino" || "${image_type}" == "iceberg-rest-server" ]]; then
./dev/docker/build-docker.sh --platform all --type ${image_type} --image ${image_name} --tag ${{ github.event.inputs.version }} --latest
else
./dev/docker/build-docker.sh --platform all --type ${image_type} --image ${image_name} --tag "${tag_name}-${{ github.event.inputs.version }}"
Expand Down

0 comments on commit 2ac2f3a

Please sign in to comment.