tags #33
@ -18,27 +18,16 @@ jobs:
|
||||
with:
|
||||
distribution: 'zulu'
|
||||
java-version: '17'
|
||||
- name: Validate Gradle Wrapper
|
||||
uses: gradle/actions/wrapper-validation@v3
|
||||
- name: Check if cut is installed
|
||||
run: echo $(which cut)
|
||||
- name: Get latest tag
|
||||
run: |
|
||||
echo "VERSION=$(git describe --tags --abbrev=0)"
|
||||
echo "${VERSION}"
|
||||
echo "MAJOR=$(echo ${VERSION} | /usr/bin/cut -d "." -f 1)"
|
||||
sudo echo "MINOR=$(echo ${VERSION} | cut -d "." -f 2)"
|
||||
echo "PATCH=$(echo ${VERSION} | cut -d "." -f 3)"
|
||||
- name: Increment version
|
||||
run: |
|
||||
PATCH=$((PATCH + 1))
|
||||
echo "NEW_VERSION=$(echo $MAJOR.$MINOR.$PATCH)"
|
||||
- name: Extract commit message
|
||||
run: echo "COMMIT_MESSAGE=$(git log -1 --pretty=%B)"
|
||||
- name: Get Next Patch Version
|
||||
id: version
|
||||
uses: reecetech/version-increment@v2024.10.1
|
||||
with:
|
||||
scheme: semver
|
||||
increment: patch
|
||||
- name: Create and push tag
|
||||
run: |
|
||||
git tag -a ${NEW_VERSION} -m "${COMMIT_MESSAGE}"
|
||||
git push origin ${NEW_VERSION}
|
||||
git tag -a ${{ steps.version.outputs.version }} -m "Tagging with ${{ steps.version.outputs.version }}"
|
||||
git push origin ${{ steps.version.outputs.version }}
|
||||
- name: Log in to Gitea Docker Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user