
2. 实现会话导出分享功能 3. 增加语音消息和通话消息的筛选 4. 实现单聊会话对话人位置调换功能 5. 添加繁体和英语表情的解析 6. 修复相近时间的消息可能会出现顺序不对的问题
40 lines
932 B
YAML
40 lines
932 B
YAML
name: Wails build
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
# Match any new tag
|
|
- '*'
|
|
|
|
env:
|
|
# Necessary for most environments as build failure can occur due to OOM issues
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
# Failure in one platform build won't impact the others
|
|
fail-fast: false
|
|
matrix:
|
|
build:
|
|
- name: 'wechatDataBackup.exe'
|
|
platform: 'windows/amd64'
|
|
os: 'windows-latest'
|
|
|
|
runs-on: ${{ matrix.build.os }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Build wails
|
|
uses: dAppServer/wails-build-action@main
|
|
id: build
|
|
with:
|
|
build-name: ${{ matrix.build.name }}
|
|
sign: false
|
|
build-platform: ${{ matrix.build.platform }}
|
|
package: true
|
|
go-version: '1.21'
|
|
wails-version: "v2.9.1" |