Update build.yml to add macos installer

This commit is contained in:
alk 2023-06-28 15:31:22 +03:00 committed by GitHub
parent 685fcc72c1
commit ac602d6b30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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