From 9d9bb099e1b69666852a8d2903993c1929ffd328 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Tue, 25 Jun 2024 22:54:27 +0200 Subject: [PATCH] Workflows: Improve deploy and test workflow --- .gitea/workflows/deploy.yaml | 1 + .gitea/workflows/test.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index db6376a..5196fda 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -41,6 +41,7 @@ jobs: uses: akkuman/gitea-release-action@v1 with: name: Elwig ${{ env.APP_VERSION }} + body: "**[Changelog](src/branch/main/CHANGELOG.md#v${{ env.APP_VERSION }})**" files: |- Setup/bin/x64/Release/Elwig-${{ env.APP_VERSION }}.exe - name: Upload to website diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index afcc24c..98e74b0 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -1,7 +1,7 @@ name: Test on: push: - branches: ["**"] + paths: ["Elwig/**", "Tests/**", "Installer/Files/*.exe"] jobs: test: name: Run tests