Skip to content

Commit

Permalink
Update build.yml to add macos installer
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 authored Jun 28, 2023
1 parent 685fcc7 commit ac602d6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac602d6

Please sign in to comment.