2024-08-07 15:23:09 +08:00
|
|
|
name: Test Build Frontend
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ubuntu:22.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Update packages
|
|
|
|
run: apt update && apt upgrade -y
|
|
|
|
|
|
|
|
- name: Install dependencies for Tauri
|
|
|
|
run: apt install -y cargo libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
|
|
|
|
|
|
|
|
- name: Install mise
|
|
|
|
run: |
|
|
|
|
install -dm 755 /etc/apt/keyrings
|
|
|
|
wget -qO - https://mise.jdx.dev/gpg-key.pub | gpg --dearmor | tee /etc/apt/keyrings/mise-archive-keyring.gpg 1> /dev/null
|
|
|
|
echo 'deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=amd64] https://mise.jdx.dev/deb stable main' | tee /etc/apt/sources.list.d/mise.list
|
|
|
|
apt update
|
|
|
|
apt install -y mise
|
|
|
|
|
|
|
|
- name: Install mise tools
|
|
|
|
run: mise install
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
mise settings set experimental true
|
2024-08-07 15:28:03 +08:00
|
|
|
mise exec bun --command 'bun run tauri build'
|