mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-24 01:40:18 +01:00
Add example build workflow (app won't be signed)
This commit is contained in:
parent
386deea95e
commit
5349e13642
1 changed files with 19 additions and 0 deletions
19
.github/workflows/ReleaseBuilds.yml
vendored
Normal file
19
.github/workflows/ReleaseBuilds.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Make Release Builds
|
||||
|
||||
on: [workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build-macos:
|
||||
runs-on: macos-12
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
ref: master
|
||||
|
||||
- run: bash build.sh
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: mac-build
|
||||
path: packaging/*.dmg
|
Loading…
Reference in a new issue