mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
ci: only sync tags of js packages. Fix tag syntax to covector's style
This commit is contained in:
@@ -112,8 +112,8 @@ while read -r PLUGIN_NAME; do
|
||||
|
||||
# Add new tags
|
||||
for FULL_TAG in "${COMMIT_TAGS[@]}"; do
|
||||
if [[ "$FULL_TAG" =~ ^"tauri-plugin-$PLUGIN_NAME-" ]]; then
|
||||
TAG_NAME="${FULL_TAG#"tauri-plugin-$PLUGIN_NAME-"}"
|
||||
if [[ "$FULL_TAG" =~ ^"$PLUGIN_NAME-js-v" ]]; then
|
||||
TAG_NAME="${FULL_TAG#"$PLUGIN_NAME-js-"}"
|
||||
echo "Creating tag $TAG_NAME"
|
||||
git tag "${TAG_NAME}" -m "${GIT_CLI_COMMIT_MESSAGE}"
|
||||
git push origin "${TAG_NAME}"
|
||||
|
||||
Reference in New Issue
Block a user