Skip to content

Commit be90f42

Browse files
committed
github: workflows: build: test builds; add macos build
1 parent 26a2b7f commit be90f42

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ permissions:
55
on:
66
release:
77
types: [published]
8+
push:
9+
branches: [main]
10+
pull_request:
11+
branches: [main]
812

913
jobs:
1014
build:
1115
name: Build executable 🔨
1216
strategy:
1317
matrix:
14-
os: [ubuntu-latest, windows-latest]
18+
os: [ubuntu-latest, windows-latest, macos-latest]
1519
runs-on: ${{ matrix.os }}
1620

1721
steps:
@@ -47,6 +51,7 @@ jobs:
4751
run: echo "BUILD_NAME=$(ls dist | grep smpmgr-.*\.zip)" >> $GITHUB_OUTPUT
4852

4953
- name: Upload portable build 🚀
54+
if: github.event_name == 'release' && github.event.action == 'published'
5055
uses: svenstaro/upload-release-action@v2
5156
with:
5257
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)