Skip to content

Commit

Permalink
added code signing
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Aug 11, 2024
1 parent 75e9193 commit cb4037b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
with:
args: ${{ matrix.args }}

- name: Basic macOS code signing
if: matrix.platform == 'macos-latest'
run: |
codesign --force --deep --sign - src-tauri/target/${{ matrix.args == '--target aarch64-apple-darwin' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin' }}/release/bundle/macos/*.app
- name: Publish macOS Artifact
if: matrix.platform == 'macos-latest'
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -124,4 +129,4 @@ jobs:
name: updater-files-ubuntu
path: |
src-tauri/target/release/bundle/appimage/*.AppImage
src-tauri/target/release/bundle/appimage/*.AppImage.sig
src-tauri/target/release/bundle/appimage/*.AppImage.sig

0 comments on commit cb4037b

Please sign in to comment.