From 943d39786dfc483d8d8fb482b8fac94c219c3113 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Sun, 7 Jun 2026 00:42:22 +0200 Subject: [PATCH] Added ci/cd --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..524f8b5 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build + +on: + push: + +jobs: + build: + runs-on: macos-14 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build Release + run: ./build.sh + + - name: Upload OmniMTP.app + uses: actions/upload-artifact@v4 + with: + name: OmniMTP.app + path: build_release/OmniMTP.app + if-no-files-found: error