From fe1e609a87b359258f8dd5de55e70f94ddc2a144 Mon Sep 17 00:00:00 2001 From: Bhasher Date: Thu, 11 Jan 2024 17:41:20 +0100 Subject: [PATCH] Desktop workflow --- .gitea/workflows/desktop.yaml | 51 +++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitea/workflows/desktop.yaml diff --git a/.gitea/workflows/desktop.yaml b/.gitea/workflows/desktop.yaml new file mode 100644 index 0000000..7aeea0e --- /dev/null +++ b/.gitea/workflows/desktop.yaml @@ -0,0 +1,51 @@ +name: Tauri based desktop app + +on: + push: + branches: + - dev + tags: + - "v*" + +jobs: + publish-tauri-desktop: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Extract tag + uses: olegtarasov/get-tag@v2.1.2 + id: tagName + with: + tagRegex: "v(.*)" + + - name: Set up node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install Rust stable + uses: dtolnay/rust-toolchain@stable + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y libwebkit2gtk-4.0-dev libgtk-3-dev libappindicator3-dev librsvg2-dev patchelf + + - name: Install frontend dependencies + run: | + cd frontend + npm install + cd .. + + - name: Build frontend + uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.PUBLISH_WORKFLOW }} + with: + tagName: 1.3.0 #${{ steps.tagName.outputs.tag }} + releaseName: focus-desktop-1.3.0 #${{ steps.tagName.outputs.tag }} + projectPath: ./frontend