Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ name: Wails build

on:
push:
branches:
- main
tags:
# Match any new tag
# Match any new tag
- '*'
pull_request:
branches:
- main

env:
# Necessary for most environments as build failure can occur due to OOM issues
Expand All @@ -13,24 +18,24 @@ env:
jobs:
build:
strategy:
# Failure in one platform build won't impact the others
# Failure in one platform build won't impact the others
fail-fast: false
matrix:
build:
- name: 'App'
platform: 'linux/amd64'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'App'
platform: 'windows/amd64'
platform: 'windows/amd64'
os: 'windows-latest'
- name: 'App'
platform: 'darwin/universal'
platform: 'darwin/universal'
os: 'macos-latest'

runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/wails.yml

This file was deleted.

Loading