Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Aszusz committed Mar 17, 2024
2 parents bf92aee + fd4b965 commit 3077092
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: SUB - Build on macOS

on:
workflow_dispatch:
inputs:
env:
description: "An Environment"
required: true
type: choice
options:
- development
- production
version:
description: "A Version"
required: true
type: string

workflow_call:
inputs:
env:
description: "An Environment"
required: true
type: string
version:
description: "A Version"
required: true
type: string

jobs:
build:
runs-on: "macos-latest"

steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.2.5

- uses: joshtynjala/setup-apache-flex-action@v2
with:
flex-version: "4.16.1"
air-version: "33.1"
accept-air-license: true

- name: Build with Ant
run: ant -noinput -buildfile 'MoonshineSDKInstaller/build/build.xml'

0 comments on commit 3077092

Please sign in to comment.