Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
Expand Down Expand Up @@ -64,7 +64,7 @@
df -h

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: 'Set up JDK 21'
uses: actions/setup-java@v5
Expand All @@ -89,10 +89,6 @@
echo "TEZ_VERSION=$(mvn -f "pom.xml" -q help:evaluate -Dexpression=tez.version -DforceStdout)" >> $GITHUB_ENV
echo "BUILD_ENV=hybrid" >> $GITHUB_ENV

- name: Prepare common environment variables
run: |
echo "namespace=${{ vars.DOCKER_NAMESPACE || 'apache' }}" >> $GITHUB_ENV

- name: Prepare an image tag for release
if: github.event_name != 'schedule'
run: |
Expand Down Expand Up @@ -190,7 +186,7 @@
file: ./packaging/src/docker/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.namespace }}/hive:${{ env.tag }}
tags: ${{ github.repository_owner }}/hive:${{ env.tag }}
build-args:
|
HIVE_VERSION=${{ env.HIVE_VERSION }}
Expand All @@ -205,7 +201,7 @@
file: ./standalone-metastore/packaging/src/docker/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.namespace }}/hive:standalone-metastore-${{ env.tag }}
tags: ${{ github.repository_owner }}/hive:standalone-metastore-${{ env.tag }}
build-args:
|
HIVE_VERSION=${{ env.HIVE_VERSION }}
Expand Down
Loading