Skip to content

Update README.md

Update README.md #187

Workflow file for this run

name: "Linux"
on:
push:
branches: ["3.X.X"]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install build dependencies
run: |
sudo apt update -y
sudo apt install libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev desktop-file-utils libudev-dev
- name: Install npm dependencies
run: npm install
- name: Build Application
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: __VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "v__VERSION__"
releaseBody: "See the assets to download this version and install. Replace AppImage with one uploaded in artifact"
releaseDraft: true
prerelease: false