Test mac app bundling

ci

test CI 2

Final commit
This commit is contained in:
Caleb Yates 2023-07-17 19:43:37 -05:00
parent ed1b0704d6
commit 8e7d776b79
3 changed files with 58 additions and 3 deletions

View file

@ -32,8 +32,20 @@ jobs:
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload executable
- name: Install bundle dependencies
run: brew install dylibbundler imagemagick
- name: Run bundle script
run: ./.github/mac-bundle.sh
- name: Sign the App
run: codesign --force -s - -vvvv Alber.app
- name: Zip it up
run: zip -r Alber Alber.app
- name: Upload MacOS App
uses: actions/upload-artifact@v2
with:
name: MacOS executable
path: './build/Alber'
name: Alber
path: 'Alber.zip'