fix
Gitea Action for docker build runtime / gitea-action-test (push) Failing after 8s Details

This commit is contained in:
chenwj113 2024-05-30 10:15:57 +08:00
parent 6001d9f8db
commit eca038d6a2
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,6 @@ jobs:
version=v1.0.0
if [[ commit_msg == v* ]]; then
version=$(echo $version | sed 's/\"//g' | awk -F"." '{$1=$1+1;$2=0;$3=0}1' OFS=".")
git tag $version
elif [[ commit_msg == feat* ]]; then
version=$(echo $version | sed 's/\"//g' | awk -F"." '{$2=$2+1}1' OFS="." )
elif [[ commit_msg == fix* ]]; then
@ -22,5 +21,6 @@ jobs:
version=$(echo $version | sed 's/\"//g' | awk -F"." '{$3=$3+1}1' OFS=".")
fi
echo $version
git tag $version
- run: echo "This job's status is ${{ job.status }}."
- run: echo "Tag name from gitea.ref_name ${{ gitea.ref_name }}"