From 971d01ff33dcb0b6de258a8e34e323909374e33e Mon Sep 17 00:00:00 2001 From: thx20001 Date: Wed, 4 Mar 2026 19:56:38 +0100 Subject: [PATCH] sf5 --- .gitea/workflows/MainRelease.yaml | 3 ++- .gitea/workflows/PreRelease.yaml | 10 +++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/MainRelease.yaml b/.gitea/workflows/MainRelease.yaml index 1214fc9..ad91145 100644 --- a/.gitea/workflows/MainRelease.yaml +++ b/.gitea/workflows/MainRelease.yaml @@ -3,7 +3,8 @@ run-name: Building and Releasing Main Branch 🚀 on: push: tags: - - '**' + - 'r**' + - '!p**' jobs: build: diff --git a/.gitea/workflows/PreRelease.yaml b/.gitea/workflows/PreRelease.yaml index f5bf0ae..5015693 100644 --- a/.gitea/workflows/PreRelease.yaml +++ b/.gitea/workflows/PreRelease.yaml @@ -3,18 +3,22 @@ run-name: Building and Releasing Prerelease Branch 🚀 on: push: tags: - - '**' + - 'p**' + - '!r**' jobs: build: runs-on: ubuntu-latest - if: false strategy: matrix: dotnet: [ '8.0.405' ] publishprofile: [ 'PublishLinuxX64', 'PublishWinX64' ] name: Publish with Dotnet ${{ matrix.dotnet }} and Profile ${{ matrix.publishprofile }} and ${GITEA_HEAD_REF:-${GITEA_REF#refs/heads/}} steps: + - name: Extract Tag Message + shell: bash + run: echo "tag_message=$(git tag -l --format='%(contents:subject)'${GITHUB_REF#refs/*/})" >> $GITHUB_ENV + id: extract_tag_message - name: Clone Project uses: actions/checkout@master with: @@ -35,7 +39,7 @@ jobs: uses: akkuman/gitea-release-action@v1 with: name: Yee - body: Test + body: ${{ steps.extract_tag_message.outputs.tag_message }} prerelease: true md5sum: true files: |-