From e6708907f45f734436be76ae527c392bed6eecbe Mon Sep 17 00:00:00 2001 From: valerio Date: Sat, 14 Mar 2026 22:20:02 +0100 Subject: [PATCH] FEAT: Gitea action CI workflow --- .gitea/workflows/build.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ef90916..5635ff3 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -3,7 +3,7 @@ name: 'publish' on: push: branches: - - release + - master # This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. @@ -15,12 +15,8 @@ jobs: fail-fast: false matrix: include: - - platform: 'macos-latest' # for Arm based macs (M1 and above). - args: '--target aarch64-apple-darwin' - platform: 'ubuntu-22.04' args: '' - - platform: 'windows-latest' - args: '' runs-on: ${{ matrix.platform }} steps: @@ -38,12 +34,13 @@ jobs: if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf cmake xdg-utils - name: install frontend dependencies run: bun install # change this to npm, pnpm or bun depending on which one you use. - - uses: tauri-apps/tauri-action@v1 + - name: build tauri packages and release + uses: ValerioMeschi/tauri-action@9f8b32da04b4d228756d93dc93b9f16869e4f105 env: GITHUB_TOKEN: ${{ secrets.SMOOTHIE_TOKEN }} TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} @@ -55,3 +52,5 @@ jobs: releaseDraft: true prerelease: false args: ${{ matrix.args }} + githubBaseUrl: https://git.floatingpoint.ch/api/v1 + isGitea: true