From b335ad1766d8c88d81ebb4f62781509a259759df Mon Sep 17 00:00:00 2001 From: Christopher Wittor Date: Sun, 9 Jun 2024 21:23:54 +0200 Subject: [PATCH] added build action --- .gitea/workflows/build.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..8753ff7 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,15 @@ +name: Build Project +run-name: Create release for project ${{ gitea.project_name }} +on: + push: + tags: + - '*' + +jobs: + build-release: + runs-on: ubuntu-latest + steps: + - name: Create release + uses: https://gitea.com/actions/gitea-release-action@main + with: + prerelease: ${{ !startsWith(gitea.ref_name, 'v') }} \ No newline at end of file