From 313c8822cb693a2448a2379b47bc157d4c865245 Mon Sep 17 00:00:00 2001 From: leafus Date: Sun, 29 Sep 2024 03:47:23 +0200 Subject: [PATCH] Update .gitea/workflows/build.yaml --- .gitea/workflows/build.yaml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 966f6dd..b96bfd4 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -23,22 +23,28 @@ jobs: go mod tidy go build -o s3-client - - name: Create release version - id: create_version - run: | - latest_version=$(git describe --tags --abbrev=0 || echo "v0.0.0") - new_version=$(echo $latest_version | awk -F. '{printf "v%d.%d.%d", $1, $2, $3+1}') - echo "new_version=$new_version" >> $GITHUB_ENV - - git tag $new_version - git push origin $new_version - - name: Get latest commit ID id: get_commit run: | commit_id=$(git rev-parse HEAD) echo "commit_id=$commit_id" >> $GITHUB_ENV + - name: Get latest version and increment + id: create_version + run: | + latest_version=$(git describe --tags --abbrev=0 || echo "v0.0.0") + new_version=$(echo $latest_version | awk -F. '{printf "v%d.%d.%d", $1, $2, $3+1}') + + if git rev-parse "$new_version" >/dev/null 2>&1; then + echo "Tag $new_version already exists. Exiting." + exit 1 + fi + + echo "new_version=$new_version" >> $GITHUB_ENV + + git tag $new_version + git push origin $new_version + - name: Create Release uses: actions/create-release@v1 with: