This is an automated email from the ASF dual-hosted git repository. fanng pushed a commit to branch iceberg_docker1 in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit 91735b5116d5f726cd8b6873529aa8a9553fc7c0 Author: fanng <[email protected]> AuthorDate: Thu Aug 8 11:13:16 2024 +0800 support public iceberg rest server docker image --- .github/workflows/docker-image.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 1993a209a..f064ea789 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -15,6 +15,7 @@ on: - 'gravitino-ci-trino' - 'gravitino-ci-doris' - 'gravitino-ci-ranger' + - 'gravitino-iceberg-rest-server' - 'trino' - 'hive' - 'ranger' @@ -64,6 +65,9 @@ jobs: elif [ "${{ github.event.inputs.image }}" == "ranger" ]; then echo "image_type=ranger" >> $GITHUB_ENV echo "image_name=datastrato/ranger" >> $GITHUB_ENV + elif [ "${{ github.event.inputs.image }}" == "gravitino-iceberg-rest-server" ]; then + echo "image_type=iceberg-rest-server" >> $GITHUB_ENV + echo "image_name=datastrato/gravitino-iceberg-rest-server" >> $GITHUB_ENV fi - name: Check publish Docker token
