Merge 1.18 into 1.19.2

This commit is contained in:
embeddedt 2023-07-13 20:12:45 -04:00
commit 0ebb566645
No known key found for this signature in database
GPG Key ID: A69433EC199B5613
2 changed files with 15 additions and 0 deletions

View File

@ -19,6 +19,8 @@ jobs:
with:
distribution: 'temurin'
java-version: 17
- name: Remove tags for release on other versions
run: ./scripts/tagcleaner.sh
- name: Build and publish mod to CurseForge & Modrinth
run: |
chmod +x gradlew

13
scripts/tagcleaner.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# if current tag is 5.2.3+1.16.5, strip all other 5.2.3+* tags
current_tag=$(git describe --tags --abbrev=0)
current_tag_prefix=$(echo $current_tag | sed 's/+.*/+/g')
git tag | while read -r other_tag; do
if [ "x$other_tag" != "x$current_tag" ] ; then
if [[ $other_tag == ${current_tag_prefix}* ]]; then
git tag -d $other_tag
fi
fi
done