From 355c6db161f59a9e8f7a482a79114956ac4dc33e Mon Sep 17 00:00:00 2001 From: Swordsteel Date: Sun, 7 Sep 2025 22:12:11 +0200 Subject: [PATCH] add release --- .gitea/workflows/publish-artifact.yaml | 3 - .gitea/workflows/publish-container.yaml | 37 +++++++++++ .gitea/workflows/release.yaml | 83 +++++++++++++++++++++++++ README.md | 3 + 4 files changed, 123 insertions(+), 3 deletions(-) create mode 100644 .gitea/workflows/publish-container.yaml create mode 100644 .gitea/workflows/release.yaml diff --git a/.gitea/workflows/publish-artifact.yaml b/.gitea/workflows/publish-artifact.yaml index f9515d8..e1c11b8 100644 --- a/.gitea/workflows/publish-artifact.yaml +++ b/.gitea/workflows/publish-artifact.yaml @@ -26,20 +26,17 @@ jobs: publish-artifact: runs-on: ubuntu-latest steps: - - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 1 ref: ${{ inputs.BRANCH_REFERENCE }} token: ${{ secrets.CI_BOT_TOKEN }} - - name: Set up JDK uses: actions/setup-java@v4 with: distribution: temurin java-version: ${{ inputs.JAVA_VERSION }} - - name: Run Gradle run: ./gradlew ${{ inputs.GRADLE_TASK }} shell: bash diff --git a/.gitea/workflows/publish-container.yaml b/.gitea/workflows/publish-container.yaml new file mode 100644 index 0000000..1a28ec5 --- /dev/null +++ b/.gitea/workflows/publish-container.yaml @@ -0,0 +1,37 @@ +name: Publish Docker Images + +on: + workflow_call: + inputs: + JAVA_VERSION: + description: Java version to use + required: false + type: string + default: '17' + PROJECT_VERSION: + description: Branch reference + required: true + type: string + PROJECT_NAME: + description: Project name + required: true + type: string + secrets: + CI_BOT_USERNAME: + required: true + CI_BOT_TOKEN: + required: true + +jobs: + publish-artifact: + runs-on: ubuntu-latest + steps: + - name: Set git credentials + if: needs.release.outputs.has-changes == 'true' + run: | + echo "A: ${{ vars.BOT_NAME }}" + echo "B: ${{ vars.BOT_EMAIL }}" + echo "C: ${{ vars.JAVA_VERSION }}" + echo "D: ${{ vars.PROJECT_VERSION }}" + echo "E: ${{ vars.PROJECT_NAME }}" + echo "F: ${{ vars.CI_BOT_USERNAME }}" diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..06654d4 --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,83 @@ +name: Release + +on: + workflow_call: + inputs: + JAVA_VERSION: + default: 17 + description: Java version to use + required: false + type: string + FAIL_FOR_NO_CHANGES: + default: true + description: Fail if there were no changes to release + required: false + type: boolean + DATABASE_FILES: + default: '' + description: Whether to handle database files + required: false + type: string + RELEASE_TYPE: + default: '' + description: Type of release (service, artifact, plugin, or catalog) + required: false + type: string + secrets: + CI_BOT_USERNAME: + required: true + CI_BOT_TOKEN: + required: true + +jobs: + release: + runs-on: ubuntu-latest + outputs: + project-name: ${{ steps.project-info.outputs.name }} + release-version: ${{ steps.project-info.outputs.version }} + has-changes: ${{ steps.project-info.outputs.change }} + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1 + token: ${{ secrets.CI_BOT_TOKEN }} + - name: Set git credentials + run: | + git config --global user.name "${{ vars.BOT_NAME }}" + git config --global user.email "${{ vars.BOT_EMAIL }}" + echo "Set Git name: ${{ vars.BOT_NAME }}" + echo "Set Git email: ${{ vars.BOT_EMAIL }}" + - name: Extract project information + id: project + run: | + NAME=$(awk -F '=' '/^rootProject\.name/ { gsub(/[[:space:]]*/,"",$2); gsub(/"/,"",$2); print $2 }' settings.gradle.kts) + if [ -z "$NAME" ]; then + echo "Error: No application name found in settings.gradle.kts" >&2 + exit 1 + fi + VERSION=$(awk -F '=' '/^version[[:space:]]*=/{ gsub(/[[:space:]]*/,"",$2); sub(/-SNAPSHOT$/,"",$2); print $2 }' gradle.properties) + if [ -z "$VERSION" ]; then + echo "Error: No version found in gradle.properties" >&2 + exit 1 + fi + CHANGE="false" + if [[ $(git log -1 --pretty=%B) != *"[RELEASE] - Bump version"* ]]; then + CHANGE="true" + fi + echo "name=$NAME" >> $GITHUB_OUTPUT + echo "Extracted application name: $NAME" + echo "version=$VERSION" >> $GITHUB_OUTPUT + echo "Extracted application version: $VERSION" + echo "change=$CHANGE" >> $GITHUB_OUTPUT + echo "Has changes to release? $CHANGE" + + finalise-docker-images: + uses: .gitea/workflows/publish-container.yaml + with: + JAVA_VERSION: ${{ inputs.JAVA_VERSION }} + PROJECT_VERSION: ${{ needs.release.outputs.release-version }} + PROJECT_NAME: ${{ needs.release.outputs.project-name }} + secrets: + CI_BOT_USERNAME: ${{ secrets.CI_BOT_USERNAME }} + CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }} diff --git a/README.md b/README.md index 236baac..6d6ce6d 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,11 @@ Rules and stuff say keep workflow in `/.gite/workflow` look at `/.gite/actions` ## Actions secrets and variables. ### Secrets + - CI_BOT_USERNAME = gitea_username - CI_BOT_TOKEN = gitea_token ### Variables +- BOT_NAME +- BOT_EMAIL