From b58e0e8d43d460e951a816bd9d0ac1ebc33fea28 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 12 Sep 2025 17:27:48 +0200 Subject: [PATCH] chore(release): add workflow for auto changelog and release --- .gitea/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..277e6b5 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,18 @@ +name: Auto Changelog & (Release) + +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Release + uses: https://git.0xmax42.io/actions/auto-changelog-release-action@v0 + with: + token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}