Skip to content

Commit fd2da8c

Browse files
authored
Merge pull request #1 from Softweal/copilot/fix-github-actions-issue
Fix GitHub Actions workflow triggering and remove duplicate config
2 parents 638ac09 + e38c01e commit fd2da8c

2 files changed

Lines changed: 11 additions & 50 deletions

File tree

.github/workflows/main.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ name: Wails build
22

33
on:
44
push:
5+
branches:
6+
- main
57
tags:
6-
# Match any new tag
8+
# Match any new tag
79
- '*'
10+
pull_request:
11+
branches:
12+
- main
813

914
env:
1015
# Necessary for most environments as build failure can occur due to OOM issues
@@ -13,24 +18,24 @@ env:
1318
jobs:
1419
build:
1520
strategy:
16-
# Failure in one platform build won't impact the others
21+
# Failure in one platform build won't impact the others
1722
fail-fast: false
1823
matrix:
1924
build:
2025
- name: 'App'
21-
platform: 'linux/amd64'
26+
platform: 'linux/amd64'
2227
os: 'ubuntu-latest'
2328
- name: 'App'
24-
platform: 'windows/amd64'
29+
platform: 'windows/amd64'
2530
os: 'windows-latest'
2631
- name: 'App'
27-
platform: 'darwin/universal'
32+
platform: 'darwin/universal'
2833
os: 'macos-latest'
2934

3035
runs-on: ${{ matrix.build.os }}
3136
steps:
3237
- name: Checkout
33-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3439
with:
3540
submodules: recursive
3641

.github/workflows/wails.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)