Skip to content

Commit f956e26

Browse files
authored
Update presto-release-publish-native.yml
1 parent 3354b08 commit f956e26

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/presto-release-publish-native.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
run: |
6767
if docker pull ${{ env.DEPENDENCY_IMAGE }}; then
6868
echo "Using dependency image ${{ env.DEPENDENCY_IMAGE }}"
69-
docker tag ${{ env.DEPENDENCY_IMAGE }} docker.io/presto/prestissimo-dependency:centos9
69+
docker tag ${{ env.DEPENDENCY_IMAGE }} presto/prestissimo-dependency:centos9
7070
else
7171
echo "Building new depedency image"
7272
docker compose build centos-native-dependency
73-
docker tag docker.io/presto/prestissimo-dependency:centos9 ghcr.io/${{ github.repository_owner }}/presto-native-dependency:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
73+
docker tag presto/prestissimo-dependency:centos9 ghcr.io/${{ github.repository_owner }}/presto-native-dependency:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
7474
docker push ghcr.io/${{ github.repository_owner }}/presto-native-dependency:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
7575
fi
7676
@@ -81,16 +81,16 @@ jobs:
8181
docker tag ghcr.io/${{ github.repository_owner }}/presto-native:${{ env.VERSION }}-${{ env.COMMIT_SHA }} docker.io/presto/prestissimo-runtime:centos9
8282
else
8383
docker compose build centos-native-runtime
84-
docker tag docker.io/presto/prestissimo-runtime:centos9 ghcr.io/${{ github.repository_owner }}/presto-native:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
84+
docker tag presto/prestissimo-runtime:centos9 ghcr.io/${{ github.repository_owner }}/presto-native:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
8585
docker push ghcr.io/${{ github.repository_owner }}/presto-native:${{ env.VERSION }}-${{ env.COMMIT_SHA }}
8686
fi
8787
8888
- name: Add release tag
8989
working-directory: presto-native-execution
9090
run: |
91-
docker tag docker.io/presto/prestissimo-runtime:centos9 ${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
91+
docker tag presto/prestissimo-runtime:centos9 ${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
9292
if [[ "${{ github.event.inputs.publish_as_latest }}" == "true" ]]; then
93-
docker tag docker.io/presto/prestissimo-runtime:centos9 ${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}:latest
93+
docker tag presto/prestissimo-runtime:centos9 ${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}:latest
9494
fi
9595
9696
- name: Push to DockerHub

0 commit comments

Comments
 (0)