mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
Update build.yml to add macos installer
This commit is contained in:
parent
685fcc72c1
commit
ac602d6b30
1 changed files with 12 additions and 0 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -112,6 +112,18 @@ jobs:
|
|||
with:
|
||||
name: geode-v${{ env.VERSION_TRIM }}-${{ matrix.config.os_identifier }}
|
||||
path: ./out
|
||||
|
||||
- name: Package MacOS
|
||||
run: |
|
||||
"./installer/mac/package.sh ./out ./out/geode-installer-v${{ env.VERSION_TRIM }}-${{ matrix.config.os_identifier }}.pkg"
|
||||
if: matrix.config.os_identifier == 'mac'
|
||||
|
||||
- name: Publish MacOS Installer
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: geode-installer-v${{ env.VERSION_TRIM }}-${{ matrix.config.os_identifier }}
|
||||
path: ./out/geode-installer-v${{ env.VERSION_TRIM }}-${{ matrix.config.os_identifier }}.pkg
|
||||
if: matrix.config.os_identifier == 'mac'
|
||||
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue