This is an automated email from the ASF dual-hosted git repository.

weizhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/main by this push:
     new bc5dbe95e9e .github: use tag name as docker image name for new tags 
(#7233)
bc5dbe95e9e is described below

commit bc5dbe95e9edafffe9e721a4617da925ad7a4c16
Author: Wei Zhou <[email protected]>
AuthorDate: Mon Feb 20 12:42:57 2023 +0100

    .github: use tag name as docker image name for new tags (#7233)
---
 .github/workflows/docker-cloudstack-simulator.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/docker-cloudstack-simulator.yml 
b/.github/workflows/docker-cloudstack-simulator.yml
index 02c677ba7c0..ac6a6bfb2dc 100644
--- a/.github/workflows/docker-cloudstack-simulator.yml
+++ b/.github/workflows/docker-cloudstack-simulator.yml
@@ -53,7 +53,7 @@ jobs:
         run: echo "ACS_VERSION=$(grep '<version>' pom.xml | head -2 | tail -1 
| cut -d'>' -f2 |cut -d'<' -f1)" >> $GITHUB_ENV
 
       - name: Set Docker image TAG
-        run: echo "TAG=$(if [[ "${ACS_VERSION}" =~ .*-SNAPSHOT ]];then echo 
${ACS_VERSION}-$(date +'%Y%m%d-%H%M%S');else echo ${ACS_VERSION};fi)" >> 
$GITHUB_ENV
+        run: echo "TAG=$(if [ "${{ github.ref_type }}" = "tag" ];then echo ${{ 
github.ref_name }}; elif [[ "${ACS_VERSION}" =~ .*-SNAPSHOT ]];then echo 
${ACS_VERSION}-$(date +'%Y%m%d-%H%M%S');else echo ${ACS_VERSION};fi)" >> 
$GITHUB_ENV
 
       - name: Set Docker image FULL TAG
         run: echo "FULL_TAG=$(if [ "${{ secrets.DOCKER_REGISTRY }}" = "" 
];then echo ${DOCKER_REPOSITORY}/cloudstack-simulator:${TAG};else echo ${{ 
secrets.DOCKER_REGISTRY 
}}/${DOCKER_REPOSITORY}/cloudstack-simulator:${TAG};fi)" >> $GITHUB_ENV

Reply via email to