Skip to content

Commit

Permalink
chore: Create tags for projects with updated info.yaml files
Browse files Browse the repository at this point in the history
  • Loading branch information
robinv8 committed Jul 17, 2024
1 parent 8690ee0 commit 661782d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions script/create-tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

#!/bin/bash

project_root="."

for dir in $(find "$project_root" -type d); do
if [[ "$dir" == *node_modules* ]] || [[ "$dir" == *.git* ]] || [[ "$dir" == *.vscode* ]]; then
continue
fi

# 当 info.yaml 不存在时,跳过
if [ ! -f "$dir/info.yaml" ]; then
continue
fi

if git diff HEAD^^ HEAD $dir/info.yaml | grep -q "^\+version:"; then
project_name=$(echo $dir | awk -F'/' '{print $NF}')
version=$(grep "version:" $dir/info.yaml | awk '{print $2}')
commit_msg=$(git log -1 --pretty=%B)
echo "create tag for $project_name/v$version"
git tag -a $project_name/v$version -m "$commit_msg"
fi
done

0 comments on commit 661782d

Please sign in to comment.