Skip to content

Commit fc8a5a8

Browse files
authored
Update build.yaml
1 parent d22b2ad commit fc8a5a8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: EDM4U build
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
unity_version:
7+
description: 'Unity version'
8+
default: '2019'
9+
required: true
10+
type: string
11+
12+
env:
13+
pythonVersion: '3.7'
14+
15+
16+
jobs:
17+
build_desktop:
18+
name: build-macOS-unity${{ inputs.unity_version}}
19+
runs-on: macos-latest
20+
steps:
21+
- uses: actions/checkout@v3
22+
- run: python -v
23+
- run: sysctl -n machdep.cpu.brand_string

0 commit comments

Comments
 (0)