From db69afcf741a32c452516d954dc9031621329e4a Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sat, 24 May 2025 13:42:48 +0200 Subject: [PATCH] Fix 18 --- .gitea/workflows/gitea-ci.yaml | 7 +++++-- .gitea/workflows/gitea-release.yaml | 8 ++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index ee1624a..0f489bd 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -4,12 +4,15 @@ name: Build And Test run-name: ${{ gitea.actor }} is runs ci pipeline -on: [ push ] +on: + push: + branches: + - main jobs: build: runs-on: ubuntu-latest - if: gitea.ref == 'refs/heads/main' + #if: gitea.ref == 'refs/heads/main' steps: - uses: https://github.com/actions/checkout@v4 diff --git a/.gitea/workflows/gitea-release.yaml b/.gitea/workflows/gitea-release.yaml index 3d998d8..2e5c5af 100644 --- a/.gitea/workflows/gitea-release.yaml +++ b/.gitea/workflows/gitea-release.yaml @@ -1,9 +1,13 @@ name: Publish run-name: ${{ gitea.actor }} is runs ci pipeline +#on: +# release: +# types: [published] on: - release: - types: [published] + push: + branches: + - release/* jobs: # test: