From ac602d6b30abee487d8302b1cda8f244c68e40b6 Mon Sep 17 00:00:00 2001 From: alk <45172705+altalk23@users.noreply.github.com> Date: Wed, 28 Jun 2023 15:31:22 +0300 Subject: [PATCH] Update build.yml to add macos installer --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0e4ae1b7..8cda177f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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