Skip to content

Commit

Permalink
ci: fix app name inside of macos installer
Browse files Browse the repository at this point in the history
  • Loading branch information
anfragment committed Nov 28, 2023
1 parent e04ec1a commit c74ae3a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ jobs:
xcrun stapler staple build/bin/Zen-${{ matrix.arch }}.app
- name: Build MacOS Installer
if: runner.os == 'macOS'
run: create-dmg build/bin/Zen-${{ matrix.arch }}.app && mv "Zen 1.0.0.dmg" Zen-${{ matrix.arch }}.dmg
run: |
cp -a build/bin/Zen-${{ matrix.arch }}.app Zen.app
create-dmg Zen.app
mv "Zen 1.0.0.dmg" Zen-${{ matrix.arch }}.dmg
rm -rf Zen.app
- name: Codesign MacOS Installer
if: runner.os == 'macOS'
env:
Expand Down

0 comments on commit c74ae3a

Please sign in to comment.