Skip to content

Commit 4e32879

Browse files
committed
Add ad-hoc code signing to release workflow
1 parent 22e8ceb commit 4e32879

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ jobs:
3434
- name: Build Tauri app
3535
run: npm run tauri:build
3636

37+
- name: Ad-hoc sign the app
38+
run: |
39+
codesign --force --deep --sign - "src-tauri/target/release/bundle/macos/anylinuxfs-gui.app"
40+
codesign --verify --verbose "src-tauri/target/release/bundle/macos/anylinuxfs-gui.app"
41+
3742
- name: Get version from tag
3843
id: version
3944
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)