Skip to content

1. 图片/视频查看重新实现,保持与微信一致 #8

1. 图片/视频查看重新实现,保持与微信一致

1. 图片/视频查看重新实现,保持与微信一致 #8

Workflow file for this run

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/[email protected]
id: build
with:
build-name: ${{ matrix.build.name }}
sign: false
build-platform: ${{ matrix.build.platform }}
package: true
go-version: '1.21'