From 80f2860ba1a2471468173fd3a113498ce32510c1 Mon Sep 17 00:00:00 2001 From: ArthurErlich Date: Sun, 15 Mar 2026 21:05:23 +0100 Subject: [PATCH] feat: added release pipline --- .gitea/workflows/release.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..e5b8c97 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,30 @@ +name: Build Release + +on: + push: + branches: [release] + pull_request: + branches: [release] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + preset: ["Windows Desktop", "Linux/X11", "macOS"] + + steps: + - uses: actions/checkout@v4 + + - name: Build + id: build + uses: mlm-games/godot-build-action@v1 + with: + EXPORT_PRESET_NAME: ${{ matrix.preset }} + + - name: Upload builds + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.preset }}-build + path: ${{ steps.build.outputs.build }}