First major release #68

Merged
hitanshu merged 70 commits from test into main 2025-09-20 18:10:19 +00:00
Showing only changes of commit 5b8735bf58 - Show all commits

View File

@ -23,7 +23,7 @@ jobs:
PATCH=$(echo ${VERSION} | cut -d "." -f 3) PATCH=$(echo ${VERSION} | cut -d "." -f 3)
NEW_PATCH=$(( ${PATCH} + 1)) NEW_PATCH=$(( ${PATCH} + 1))
echo ${NEW_PATCH} echo ${NEW_PATCH}
echo "new_version=$MAJOR.$MINOR.$NEW_PATCH" >> $GITHUB_OUTPUT echo "new_version=$(echo "${MAJOR}.${MINOR}.${NEW_PATCH}")" >> $GITHUB_OUTPUT
echo ${new_version} echo ${new_version}
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -44,6 +44,8 @@ jobs:
uses: gradle/actions/wrapper-validation@v3 uses: gradle/actions/wrapper-validation@v3
- name: Create and push tag - name: Create and push tag
run: | run: |
git config --global user.name "${{gitea.actor}}"
git config --global user.email "${{ gitea.actor }}@users.noreply.github.com"
git tag -a ${{ needs.tag.outputs.new_version }} -m "Pushing new version ${{ needs.tag.outputs.new_version }}" git tag -a ${{ needs.tag.outputs.new_version }} -m "Pushing new version ${{ needs.tag.outputs.new_version }}"
git push origin ${{ needs.tag.outputs.new_version }} git push origin ${{ needs.tag.outputs.new_version }}
- name: Log in to Gitea Docker Registry - name: Log in to Gitea Docker Registry