This is an automated email from the ASF dual-hosted git repository.
casion pushed a commit to branch dev-1.3.0
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git
The following commit(s) were added to refs/heads/dev-1.3.0 by this push:
new 9be7254fc feat(git-action): add the image push tag as latest (#3622)
9be7254fc is described below
commit 9be7254fc9b86fbba6cec882cb5e8a4bd58205cd
Author: jacktao007 <[email protected]>
AuthorDate: Wed Oct 12 13:41:43 2022 +0800
feat(git-action): add the image push tag as latest (#3622)
---
.github/workflows/publish-docker.yaml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.github/workflows/publish-docker.yaml
b/.github/workflows/publish-docker.yaml
index d90133c7c..99f9368ab 100644
--- a/.github/workflows/publish-docker.yaml
+++ b/.github/workflows/publish-docker.yaml
@@ -80,8 +80,18 @@ jobs:
docker images
docker tag linkis:${{ env.LINKIS_VERSION }} ${{ env.HUB }}/linkis:${{
env.DOCKER_VERSION }}
docker push ${{ env.HUB }}/linkis:${{ env.DOCKER_VERSION }}
+
+ docker tag linkis:${{ env.LINKIS_VERSION }} ${{ env.HUB
}}/linkis:latest
+ docker push ${{ env.HUB }}/linkis:latest
+
docker tag linkis-web:${{ env.LINKIS_VERSION }} ${{ env.HUB
}}/linkis-web:${{ env.DOCKER_VERSION }}
docker push ${{ env.HUB }}/linkis-web:${{ env.DOCKER_VERSION }}
+
+ docker tag linkis-web:${{ env.LINKIS_VERSION }} ${{ env.HUB
}}/linkis-web:latest
+ docker push ${{ env.HUB }}/linkis-web:latest
docker tag linkis-ldh:${{ env.LINKIS_VERSION }} ${{ env.HUB
}}/linkis-ldh:${{ env.DOCKER_VERSION }}
docker push ${{ env.HUB }}/linkis-ldh:${{ env.DOCKER_VERSION }}
+
+ docker tag linkis-ldh:${{ env.LINKIS_VERSION }} ${{ env.HUB
}}/linkis-ldh:latest
+ docker push ${{ env.HUB }}/linkis-ldh:latest
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]