Skip to content

Yeet swap option for my sanity #26

Yeet swap option for my sanity

Yeet swap option for my sanity #26

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:
fail-fast: false
matrix:
build:
[
{
name: "Staxie-linux-amd64",
platform: linux/amd64,
os: ubuntu-latest,
},
{
name: "Staxie-windows-amd64.exe",
platform: windows/amd64,
os: windows-latest,
},
{ name: "Staxie", platform: darwin/universal, os: macos-latest },
]
runs-on: ${{ matrix.build.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: dAppServer/wails-build-action@v2.2
with:
build-name: ${{ matrix.build.name }}
build-platform: ${{ matrix.build.platform }}
nsis: false