From 3074438147ca8dfb7994132578ec837785be6b00 Mon Sep 17 00:00:00 2001 From: NimBold Date: Fri, 12 Jun 2026 19:13:57 +0330 Subject: [PATCH] chore: remove tauri build workflow --- .github/workflows/tauri-build.yml | 60 ------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 .github/workflows/tauri-build.yml diff --git a/.github/workflows/tauri-build.yml b/.github/workflows/tauri-build.yml deleted file mode 100644 index 269345d..0000000 --- a/.github/workflows/tauri-build.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: "Build Tauri App" - -on: - push: - branches: - - main - tags: - - 'v*' - workflow_dispatch: - -jobs: - build: - strategy: - fail-fast: false - matrix: - include: - - platform: "macos-latest" - args: "--target aarch64-apple-darwin" - - platform: "macos-latest" - args: "--target x86_64-apple-darwin" - - platform: "ubuntu-22.04" - args: "" - - platform: "windows-latest" - args: "" - - runs-on: ${{ matrix.platform }} - steps: - - uses: actions/checkout@v4 - - - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-22.04' - run: | - sudo apt-get update - sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - - - name: setup node - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: install Rust stable - uses: dtolnay/rust-toolchain@stable - with: - targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - - - name: install npm dependencies - working-directory: ./apps/desktop - run: npm install - - - uses: tauri-apps/tauri-action@v0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - projectPath: ./apps/desktop - tagName: v__VERSION__ - releaseName: 'Firelink v__VERSION__' - releaseBody: 'See the assets to download this version and install.' - releaseDraft: true - prerelease: false - args: ${{ matrix.args }}